diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2022-02-17 12:46:12 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2022-02-17 12:46:12 -0500 |
| commit | 97deba17b09079716eb996e967e4d7b0b6b4bc85 (patch) | |
| tree | d4e6ccceb63a9173ad0a7573f2a58e63ac374d1b /config.def.h | |
| parent | 6c5e4e30a8f539035498ecd0fd735b353bb482ee (diff) | |
| download | dwm-97deba17b09079716eb996e967e4d7b0b6b4bc85.tar.gz | |
Toggle screenlock and compositor
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index fad096a..c974e76 100644 --- a/config.def.h +++ b/config.def.h @@ -229,7 +229,7 @@ static Key keys[] = { { MODKEY, XK_u, setlayout, {.v = &layouts[3]} }, { MODKEY, XK_i, setlayout, {.v = &layouts[11]} }, { MODKEY, XK_o, setlayout, {.v = &layouts[7]} }, - //{ MODKEY, XK_p, <stuff> {} }, + { MODKEY, XK_p, spawn, SHCMD("toggle-picom") }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, { MODKEY, XK_0, view, {.ui = ~0 } }, @@ -251,6 +251,7 @@ static Key keys[] = { { MODKEY|ShiftMask, XK_r, quit, {1} }, /* Application Launching Hotkeys */ + { MODKEY|ShiftMask, XK_Escape, spawn, SHCMD("toggle-lock")}, { MODKEY, XK_Escape, spawn, SHCMD("lock")}, { MODKEY, XK_F1, spawn, SHCMD("qutebrowser")}, { MODKEY, XK_F2, spawn, SHCMD("kitty neomutt")}, |