diff options
author | Julian T <julian@jtle.dk> | 2021-08-18 18:11:49 +0200 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-08-18 18:11:49 +0200 |
commit | a774c5b13dcbb197615aff8f90748031255be3cd (patch) | |
tree | f999101fc55ae04f54645bb5d854782da7f2b16a | |
parent | 9e2b2d0b1168d7cb35cc87299ecbe85dbb34f3af (diff) |
Faster moving of windows in i3
-rw-r--r-- | i3/.config/i3/config | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/i3/.config/i3/config b/i3/.config/i3/config index 43529ad..76f27bd 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -61,10 +61,10 @@ bindsym $mod+Up focus up bindsym $mod+Right focus right # move focused window -bindsym $mod+Shift+h move left -bindsym $mod+Shift+j move down -bindsym $mod+Shift+k move up -bindsym $mod+Shift+l move right +bindsym $mod+Shift+h move left 20 +bindsym $mod+Shift+j move down 20 +bindsym $mod+Shift+k move up 20 +bindsym $mod+Shift+l move right 20 # alternatively, you can use the cursor keys: bindsym $mod+Shift+Left move left @@ -162,8 +162,8 @@ bindsym $mod+Shift+9 move container to workspace $ws9 bindsym $mod+Shift+0 move container to workspace $ws10 # brightness settings -bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 5 -bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 5 +bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 2 +bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 2 # volume settings bindsym XF86AudioRaiseVolume exec ~/Scripts/volume volumeup |