From 5b3566465924aa15bca1f6db96cc4076d46e59d8 Mon Sep 17 00:00:00 2001 From: Cian Bagshaw Date: Wed, 18 Jan 2023 15:23:28 +0000 Subject: [PATCH] Changed Gaps and Volume Keys Only allowed for inner gaps to be changed, freeing plus/minus keys for volume as to not require shift press also. --- .config/i3/config | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.config/i3/config b/.config/i3/config index 0ece085..4b01e9e 100755 --- a/.config/i3/config +++ b/.config/i3/config @@ -12,8 +12,8 @@ exec_always picom floating_modifier $mod # increase/decrease volume -bindsym $mod+Shift+plus exec amixer sset 'Master' 5%+ && notify-send "volume +5%" -bindsym $mod+Shift+minus exec amixer sset 'Master' 5%- && notify-send "volume -5%" +bindsym $mod+plus exec amixer sset 'Master' 5%+ && notify-send "volume +5%" +bindsym $mod+minus exec amixer sset 'Master' 5%- && notify-send "volume -5%" # start a terminal bindsym $mod+Return exec alacritty @@ -26,17 +26,11 @@ bindsym $mod+Shift+q kill bindsym $mod+d exec rofi -show run -icon-theme "Papirus" -show-icons # gaps -gaps inner 4 gaps outer 2 - -bindsym $mod+plus gaps outer current plus 5 -bindsym $mod+minus gaps outer current minus 5 - +gaps inner 4 bindsym $mod+bracketright gaps inner current plus 5 bindsym $mod+bracketleft gaps inner current minus 5 - bindsym $mod+BackSpace gaps inner current set 4 -bindsym $mod+Shift+BackSpace gaps outer current set 2 # change focus bindsym $mod+h focus left -- 2.20.1