diff options
Diffstat (limited to 'dwm/chadwm/config.def.h')
-rw-r--r-- | dwm/chadwm/config.def.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dwm/chadwm/config.def.h b/dwm/chadwm/config.def.h index ee17db6..b49ef88 100644 --- a/dwm/chadwm/config.def.h +++ b/dwm/chadwm/config.def.h @@ -122,13 +122,13 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = {"dmenu_run", NULL}; -static const char *termcmd[] = {"alacritty", NULL}; // change this to your term +static const char *termcmd[] = {"st", NULL}; // change this to your term static const char *rofi[] = {"rofi", "-show", "drun", NULL}; static const char *xi[] = {"xbacklight", "-inc", "7", NULL}; static const char *screenshotcmd[] = {"flameshot", "gui", NULL}; static const char *xd[] = {"xbacklight", "-dec", "7", NULL}; -static const char *volume_up_cmd[] = {"pamixer", "-i", "5", NULL}; -static const char *volume_down_cmd[] = {"pamixer", "-d", "5", NULL}; +static const char *volume_up_cmd[] = {"pamixer", "--allow-boost", "-i", "5", NULL}; +static const char *volume_down_cmd[] = {"pamixer", "--allow-boost", "-d", "5", NULL}; static const char *volume_mute_toggle[] = {"pamixer", "-t", NULL}; static const char *keyboard_brightness_up[] = {"xbacklight", "-ctrl", "asus::kbd_backlight", "-inc", "33", NULL}; @@ -137,7 +137,7 @@ static const char *keyboard_brightness_down[] = {"xbacklight", "-ctrl", "asus::k static const char *player_toggle[] = {"playerctl", "play-pause", NULL}; static const char *player_next[] = {"playerctl", "next", NULL}; static const char *player_previous[] = {"playerctl", "previous", NULL}; -static const char *screen_lock[] = {"xsecurelock", NULL}; +static const char *screen_lock[] = {"light-locker-command", "-l", NULL}; static Key keys[] = { /* modifier key function argument */ |