Compare commits
2 Commits
bcbc2e6d1d
...
master
Author | SHA1 | Date | |
---|---|---|---|
![]() |
dc97dc5302 | ||
![]() |
f5eb5cac83 |
10
config.def.h
10
config.def.h
@ -11,11 +11,11 @@ static const char *fonts[] = { "Terminus:size=10" };
|
|||||||
static const char dmenufont[] = "Terminus:size=10";
|
static const char dmenufont[] = "Terminus:size=10";
|
||||||
|
|
||||||
/* Farben aus Alacritty übernommen */
|
/* Farben aus Alacritty übernommen */
|
||||||
static const char col_gray1[] = "#161616";
|
static const char col_gray1[] = "#121212";
|
||||||
static const char col_gray2[] = "#ffffff";
|
static const char col_gray2[] = "#ffffff";
|
||||||
static const char col_gray3[] = "#dde1e6";
|
static const char col_gray3[] = "#dde1e6";
|
||||||
static const char col_gray4[] = "#ffffff";
|
static const char col_gray4[] = "#ffffff";
|
||||||
static const char col_cyan[] = "#161616";
|
static const char col_cyan[] = "#121212";
|
||||||
|
|
||||||
/* Farbschema für die Fenster und die Leiste */
|
/* Farbschema für die Fenster und die Leiste */
|
||||||
static const char *colors[][3] = {
|
static const char *colors[][3] = {
|
||||||
@ -73,9 +73,9 @@ static const Layout layouts[] = {
|
|||||||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
||||||
static const char *termcmd[] = { "st", NULL };
|
static const char *termcmd[] = { "st", NULL };
|
||||||
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
||||||
static const char *upvol[] = { "pactl", "set-sink-volume", "@DEFAULT_SINK@", "+5%", NULL };
|
static const char *upvol[] = { "wpctl", "set-volume", "@DEFAULT_AUDIO_SINK@", "5%+", NULL };
|
||||||
static const char *downvol[] = { "pactl", "set-sink-volume", "@DEFAULT_SINK@", "-5%", NULL };
|
static const char *downvol[] = { "wpctl", "set-volume", "@DEFAULT_AUDIO_SINK@", "5%-", NULL };
|
||||||
static const char *mutevol[] = { "pactl", "set-sink-mute", "@DEFAULT_SINK@", "toggle", NULL };
|
static const char *mutevol[] = { "wpctl", "set-mute", "@DEFAULT_AUDIO_SINK@", "toggle", NULL };
|
||||||
|
|
||||||
static const Key keys[] = {
|
static const Key keys[] = {
|
||||||
/* modifier key function argument */
|
/* modifier key function argument */
|
||||||
|
Reference in New Issue
Block a user