diff options
| author | stkhan <personal@slickd.xyz> | 2023-01-01 15:18:52 -0600 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2023-01-01 15:18:52 -0600 |
| commit | f867cb4ec650554691acefe9f30ab7e9e9ab52df (patch) | |
| tree | fe0a3be6c8f64a9e0183deee700a1f56eb4aa514 /wm/dwm-6.3/config.h | |
| parent | 52586d334aa7037f6d73c7ba7a33530501c96c98 (diff) | |
Add notes to control keybinds
Diffstat (limited to 'wm/dwm-6.3/config.h')
| -rw-r--r-- | wm/dwm-6.3/config.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/wm/dwm-6.3/config.h b/wm/dwm-6.3/config.h index 2652667..74b6814 100644 --- a/wm/dwm-6.3/config.h +++ b/wm/dwm-6.3/config.h @@ -147,8 +147,15 @@ static Key keys[] = { { MODKEY, XK_s, spawn, SHCMD("sarc.sh --search_web") }, { MODKEY, XK_g, spawn, SHCMD("sarc.sh --goto-website") }, { MODKEY, XK_t, spawn, SHCMD("st vim ~/.cache/todo") }, - { MODKEY, XK_n, spawn, SHCMD("st vim ~/.cache/.sarc_notes") }, - { MODKEY|ShiftMask, XK_n, spawn, SHCMD("st vim ~/.cache/.sarc_notes.2") }, + { ControlMask, XK_1, spawn, SHCMD("st vim ~/.cache/.sarc_notes.1") }, + { ControlMask, XK_2, spawn, SHCMD("st vim ~/.cache/.sarc_notes.2") }, + { ControlMask, XK_3, spawn, SHCMD("st vim ~/.cache/.sarc_notes.3") }, + { ControlMask, XK_4, spawn, SHCMD("st vim ~/.cache/.sarc_notes.4") }, + { ControlMask, XK_5, spawn, SHCMD("st vim ~/.cache/.sarc_notes.5") }, + { ControlMask, XK_6, spawn, SHCMD("st vim ~/.cache/.sarc_notes.6") }, + { ControlMask, XK_7, spawn, SHCMD("st vim ~/.cache/.sarc_notes.7") }, + { ControlMask, XK_8, spawn, SHCMD("st vim ~/.cache/.sarc_notes.8") }, + { ControlMask, XK_9, spawn, SHCMD("st vim ~/.cache/.sarc_notes.9") }, TAGKEYS( XK_1, 0) TAGKEYS( XK_2, 1) TAGKEYS( XK_3, 2) |