diff options
| author | ProsperousPotato <ProsperousPotato@users.noreply.github.com> | 2025-04-27 16:08:11 +0100 |
|---|---|---|
| committer | ProsperousPotato <ProsperousPotato@users.noreply.github.com> | 2025-04-27 16:08:11 +0100 |
| commit | bb1b2fe60ac3cc6e8a494f6b57c806c0f24d06ea (patch) | |
| tree | ec279b367f546e8531cd6c718ff20c4701c6589d | |
| parent | c060dfa9246541a5166dab645ad6639328ffd88e (diff) | |
fix two commands bound to same keybind
| -rw-r--r-- | config.h | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -48,15 +48,12 @@ static const Rule rules[] = { { "qemu-system-x86_64","qemu-system-x86_64",NULL, 0, 1, 0, 0, -1 }, { "Virt-manager",NULL, NULL, 0, 0, 0, 0, -1 }, { "qBittorrent", NULL, NULL, 0, 1, 0, 0, -1 }, - { "qBittorrent", "qbittorrent", NULL, 0, 0, 0, 0, -1 }, + { "qBittorrent", "qbittorrent", NULL, 0, 1, 0, 0, -1 }, { "St", "st", NULL, 0, 0, 1, 1, -1 }, { "stfloat", "st", NULL, 0, 1, 1, 1, -1 }, { "mpv", NULL, NULL, 0, 1, 0, 0, -1 }, { "Nsxiv", NULL, NULL, 0, 1, 0, 0, -1 }, { "scrcpy", NULL, NULL, 0, 1, 0, 0, -1 }, - { "Pamac-manager", "pamac-manager",NULL, 0, 1, 0, 0, -1 }, -// { "Floorp", "Alert", NULL, 0, 1, 0, 0, -1 }, -// { "Floorp", "Places", "Library", 0, 1, 0, 0, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, }; @@ -138,7 +135,7 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_r, quit, {1} }, { MODKEY, XK_e, spawn, SHCMD(TERMINAL" -e mc --nosubshell") }, { MODKEY|ShiftMask, XK_e, spawn, SHCMD(TERMINAL" -c stfloat -e su -c 'mc --nosubshell'") }, - { MODKEY, XK_m, spawn, SHCMD(TERMINAL" -e neomutt") }, + { MODKEY|ShiftMask, XK_m, spawn, SHCMD(TERMINAL" -e neomutt") }, { MODKEY, XK_n, spawn, SHCMD(TERMINAL" -e newsboat") }, { MODKEY, XK_Escape, spawn, SHCMD(TERMINAL" -e gotop") }, { Mod1Mask, XK_Escape, spawn, SHCMD(TERMINAL" -c stfloat -e gotop") }, |
