keybind changes

This commit is contained in:
Luca Bilke 2023-06-28 18:47:38 +02:00
parent eabf4d81bd
commit 26e5eef6ab
No known key found for this signature in database
GPG Key ID: 7B77C51E8C779E75
2 changed files with 6 additions and 5 deletions

View File

@ -39,6 +39,7 @@ Mod Shift|minus|Switch to horizontal bottom stack layout
# Spawn Programs
Modifier(s)|Key|Action
:--|:--|:--
Mod|g|Spawn wiki.vim
Mod|t|Spawn a browser window
Mod Shift|t|Spawn a private browser window
Mod|o|Toggle HTOP (Process Manager) scratchpad
@ -51,7 +52,6 @@ Mod|Return|Spawn a terminal window
Mod Shift|Return|Spawn a terminal scratchpad
Mod Alt|Return|Spawn a terminal window in working directory of active client
Mod|b|Spawn an NMTUI (Network Manager) window
Mod|m|Spawn wiki.vim
Mod|w|Spawn Ferdium
# System
@ -73,7 +73,8 @@ Mod|Up|Increase volume by 5
Mod Shift|Up|Increase volume by 20
Mod|Down|Decrease volume by 5
Mod Shift|Down|Decrease volume by 20
Mod Shift|m|Mute all sound
Mod|m|Mute all sound
Mod Shift|m|Stop all players
Mod|p|Play or pause the last active player
# Misc.

View File

@ -163,7 +163,7 @@ static const Key keys[] = {
// { MODKEY | ShiftMask, XK_y, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY, XK_f, togglefullscr, {0} },
// { MODKEY | ShiftMask, XK_f, setlayout, {.v = (const char *[]){NULL}} },
// { MODKEY, XK_g, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY, XK_g, togglescratch, {.v = spwiki} },
// { MODKEY | ShiftMask, XK_g, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY, XK_c, incnmaster, {.i = +1} },
{ MODKEY | ShiftMask, XK_c, resetnmaster, {0} },
@ -214,8 +214,8 @@ static const Key keys[] = {
// { MODKEY | ShiftMask, XK_x, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY, XK_b, togglescratch, {.v = spnmtui} },
{ MODKEY | ShiftMask, XK_b, togglebar, {0} },
{ MODKEY, XK_m, togglescratch, {.v = spwiki} },
{ MODKEY | ShiftMask, XK_m, spawn, {.v = (const char *[]){"pamixer-notify", "-t", NULL}} },
{ MODKEY, XK_m, spawn, {.v = (const char *[]){"pamixer-notify", "-t", NULL}} },
{ MODKEY | ShiftMask, XK_m, spawn, {.v = (const char *[]){"playerctl", "-a", "stop"}} },
{ MODKEY, XK_w, spawn, {.v = (const char *[]){"ferdium", NULL}} },
// { MODKEY | ShiftMask, XK_w, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY, XK_v, focusstack, {.i = PREVSEL} },