From a8d0e2c7bb1188ab8ca24bdb02af7a2e0357b876 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Fri, 17 Jul 2026 14:52:53 -0700 Subject: [PATCH] Fix mod+period having the wrong symbol. --- files/settings/i3.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/settings/i3.config b/files/settings/i3.config index 90b51b6..03681a7 100644 --- a/files/settings/i3.config +++ b/files/settings/i3.config @@ -138,7 +138,7 @@ bindsym shift+XF86MonBrightnessDown exec --no-startup-id "light -U 10; notify-se # Use the comma and period keys to change volume. bindsym $mod+comma exec --no-startup-id bash -c 'source /usr/local/bin/volume.function && volume -2 && notify-send "Volume -" $(vol-d)' -bindsym $mod+period exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume +2 && notify-send 'Volume -' $(vol-d)" +bindsym $mod+period exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume +2 && notify-send 'Volume +' $(vol-d)" bindsym shift+$mod+comma exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume -10 && notify-send 'Volume ---' $(vol-d)" bindsym shift+$mod+period exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume +10 && notify-send 'Volume +++' $(vol-d)"