diff options
| -rw-r--r-- | dwm-6.2/config.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dwm-6.2/config.h b/dwm-6.2/config.h index 3754cff..4f37f05 100644 --- a/dwm-6.2/config.h +++ b/dwm-6.2/config.h @@ -10,16 +10,16 @@ static const int showsystray = 1; /* 0 means no systray */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 0; /* 0 means bottom bar */ static const char *fonts[] = { "Sudo:size=10" }; -static const char dmenufont[] = "Sudo:size=16"; +static const char dmenufont[] = "Sudo:size=24"; static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#005577"; +static const char col_orang[] = "dark orange"; // "#ED9121"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeSel] = { col_gray1, col_orang, col_orang }, }; /* tagging */ @@ -59,7 +59,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ -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_orang, "-sf", col_gray1, NULL }; static const char *termcmd[] = { "st", NULL }; /* @@ -71,7 +71,7 @@ static const char *brightness_dn[] = { "brightnessctl", "s", "5%-", NULL }; #define XF86AudioLowerVolume 0x1008ff11 #define XF86AudioRaiseVolume 0x1008ff13 -#define XF86Launch1 0x1008ff41 +#define XF86AudioMute 0x1008ff12 static const char *vol_dn[] = { "pactl", "set-sink-volume", "0", "-5%", NULL }; static const char *vol_up[] = { "pactl", "set-sink-volume", "0", "+5%", NULL }; static const char *vol_mt[] = { "pactl", "set-sink-mute", "0", "toggle", NULL }; @@ -86,7 +86,7 @@ static Key keys[] = { { MODKEY, XK_t, spawn, {.v = termcmd } }, { 0, XF86AudioLowerVolume, spawn, {.v = vol_dn } }, { 0, XF86AudioRaiseVolume, spawn, {.v = vol_up } }, - { 0, XF86Launch1, spawn, {.v = vol_mt } }, + { 0, XF86AudioMute, spawn, {.v = vol_mt } }, { 0, XF86ScreenSaver, spawn, {.v = lock } }, /* { 0, XF86MonBrightnessDown, spawn, {.v = brightness_dn } }, |
