diff options
Diffstat (limited to 'wm/dwm-6.4/config.h')
| -rw-r--r-- | wm/dwm-6.4/config.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/wm/dwm-6.4/config.h b/wm/dwm-6.4/config.h index 9fae04c..4ec7a8c 100644 --- a/wm/dwm-6.4/config.h +++ b/wm/dwm-6.4/config.h @@ -25,7 +25,7 @@ static const char *colors[][3] = { }; static const char *const autostart[] = { - "sarc.sh", "--redshift", NULL, + "redshift", "-l", "$(curl -s https://location.services.mozilla.com/v1/geolocate?key=geoclue | jq -r '\(.location.lat:\(.location.lng\)'", NULL, "xsetroot", "-name", "Loading dwmblocks...", NULL, "dwmblocks", NULL, "fehbg", NULL, @@ -166,7 +166,8 @@ static Key keys[] = { TAGKEYS( XK_7, 6) TAGKEYS( XK_8, 7) TAGKEYS( XK_9, 8) - { MODKEY|ShiftMask, XK_q, quit, {0} }, + { ControlMask, XK_q, quit, {1} }, + { MODKEY|ShiftMask, XK_q, quit, {0} }, }; |