remove inline comments from keybinds.conf

This commit is contained in:
2023-07-04 17:19:05 -04:00
parent 0da654da8e
commit 6502c2ecaf
+9 -9
View File
@@ -1,7 +1,7 @@
# common operations
bindsym $mod+q kill # quit focused window
bindsym $mod+q kill
bindsym $mod+Shift+r restart
bindsym Print exec --no-startup-id flameshot gui # screenshot
bindsym Print exec --no-startup-id flameshot gui
bindsym $mod+c exec --no-startup-id ~/.config/rofi/scripts/configs.sh
bindsym $mod+d exec --no-startup-id "dmenu_run -fn 'SpaceMono Nerd Font-11' -nf '#81a1c1' -nb '#434c5e' -sb '#5e81ac' -sf '#88c0d0'"
bindsym $mod+Shift+d exec --no-startup-id "rofi -modi drun,run -show drun -show-icons"
@@ -27,24 +27,24 @@ bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAUL
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -5% && $refresh_i3status
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 10 # increase screen brightness
bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 10 # decrease screen brightness
bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 10
bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 10
# container focus
bindsym $mod+h focus left
bindsym $mod+j focus down
bindsym $mod+k focus up
bindsym $mod+l focus right
bindsym $mod+space focus mode_toggle # change focus between tiling / floating windows
bindsym $mod+a focus parent # focus the parent container
#bindsym $mod+d focus child # focus the child container
bindsym $mod+space focus mode_toggle
bindsym $mod+a focus parent
#bindsym $mod+d focus child
# container resizing
bindsym $mod+Shift+Down resize shrink height 8 px or 8 ppt
bindsym $mod+Shift+Up resize grow height 8 px or 8 ppt
bindsym $mod+Shift+Left resize shrink width 8 px or 8 ppt
bindsym $mod+Shift+Right resize grow width 8 px or 8 ppt
bindsym $mod+r mode "resize" # resize mode
bindsym $mod+r mode "resize"
# container layout
bindsym $mod+f fullscreen toggle
@@ -53,7 +53,7 @@ bindsym $mod+Shift+j move down
bindsym $mod+Shift+k move up
bindsym $mod+Shift+l move right
#bindsym $mod+o sticky toggle
bindsym $mod+Shift+space floating toggle # toggle tiling / floating
bindsym $mod+Shift+space floating toggle
bindsym $mod+Shift+plus split toggle; exec --no-startup-id "notify-send 'Toggled split'"
bindsym $mod+s layout stacking; exec --no-startup-id "notify-send 'Stacking mode'"
bindsym $mod+t layout tabbed; exec --no-startup-id "notify-send 'Tab mode'"