From ca37538fd05f51b3dc12f952c772cc64751fc0e8 Mon Sep 17 00:00:00 2001 From: speedie Date: Thu, 3 Nov 2022 15:27:12 +0100 Subject: [PATCH] update keybinds to fix conflict --- docs/keybinds | 4 ++-- keybinds.h | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/keybinds b/docs/keybinds index d87ec63..c1759f4 100644 --- a/docs/keybinds +++ b/docs/keybinds @@ -115,8 +115,6 @@ - Super+r & s - Run screenkey if it is installed - Super+r & d - Kill screenkey - - Super+w & r - Randomize wallpaper - - Super+w & p - Set wallpaper to the previous - Super+t & r - Reorganize tags and move windows - Super+t & t - Toggle tag area in the bar - Super+t & y - Toggle empty tag area in the bar @@ -152,6 +150,8 @@ - Super+Shift+g & o - Decrease outer gaps by 1 - Super+Shift+e & a - Open the virtual keyboard - Super+Shift+e & e - Open a list of all emojis and copy the selection + - Super+Shift+e & r - Randomize wallpaper + - Super+Shift+e & p - Set wallpaper to the previous - Super+Shift+k & o - Kill every window except the focused -- Extras -- diff --git a/keybinds.h b/keybinds.h index 52d7f54..d8f2854 100644 --- a/keybinds.h +++ b/keybinds.h @@ -207,9 +207,10 @@ static Key keys[] = { { MODIFIER1, XK_l, XK_p, togglelayoutpos, {0} }, - { MODIFIER1, XK_w, XK_r, spawn, cmd( "speedwm-swal --randomize" ) }, - { MODIFIER1, XK_w, XK_p, spawn, cmd( "speedwm-swal --previous" ) }, { MODIFIER1|SHIFT, XK_k, XK_o, killunsel, {0} }, + + { MODIFIER1|SHIFT, XK_e, XK_p, spawn, cmd( "speedwm-swal --previous" ) }, + { MODIFIER1|SHIFT, XK_e, XK_r, spawn, cmd( "speedwm-swal --randomize" ) }, { MODIFIER1|SHIFT, XK_e, XK_a, spawn, cmd( "speedwm-virtualkeyboard" ) }, { MODIFIER1|SHIFT, XK_e, XK_e, spawn, cmd( "speedwm-virtualkeyboard -e" ) },