diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2021-02-13 14:52:01 +0100 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2021-02-13 14:52:01 +0100 |
commit | b0a71b20c97ac2b97a1600e088753465137713e0 (patch) | |
tree | 8779ea8ec707861a21a2d7f59cc6cfdee2f06544 /dwm | |
parent | 565800bbe45ea25e8cf508ac94e71fa5207aea48 (diff) |
added xscreensaver usage, simplified xinitrc and dwms use of it
Diffstat (limited to 'dwm')
-rw-r--r-- | dwm/config.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/dwm/config.h b/dwm/config.h index 15d5052..a2ed44e 100644 --- a/dwm/config.h +++ b/dwm/config.h @@ -61,7 +61,6 @@ static const char *passmenucmd[] = { "passmenu", "-fn", dmenufont, "-nb", col_gr static const char *volumeup[] = { "amixer", "-D", "pulse", "sset", "Master", "5%+", NULL}; static const char *volumedown[] = { "amixer", "-D", "pulse", "sset", "Master", "5%-", NULL}; static const char *termcmd[] = { "st", NULL }; -static const char *exitcmd[] = { "killall", "xinit", NULL }; static Key keys[] = { /* modifier key function argument */ @@ -73,8 +72,7 @@ static Key keys[] = { { MODKEY, XK_minus, spawn, {.v = volumedown } }, { MODKEY, XK_q, killclient, {0} }, - { MODKEY, XK_r, quit, {0} }, - { MODKEY|ShiftMask, XK_e, spawn, {.v = exitcmd} }, + { MODKEY|ShiftMask, XK_e, quit, {0} }, { MODKEY, XK_i, incnmaster, {.i = +1 } }, { MODKEY, XK_u, incnmaster, {.i = -1 } }, |