diff options
| author | stkhan <personal@slickd.xyz> | 2023-03-19 14:03:09 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2023-03-19 14:03:09 -0500 |
| commit | 7eef34f34b3802a81dc984effcd3977981b0ad80 (patch) | |
| tree | c1577a2c045df4cbf5b180e91424f4423548ada5 /wm/dwm-6.4/config.h | |
| parent | 303f609abfd668022dbe799e5979f64396ca7c20 (diff) | |
Add restart patch and change redshift cmd
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} }, }; |