From 7a9be1804a101b8507f0d1e6e47ed2a90f844ecb Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 13 Jun 2020 17:02:40 +0200 Subject: [PATCH] [ADD][I3] Workspace scrolling using direction keys --- i3/.config/i3/config | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/i3/.config/i3/config b/i3/.config/i3/config index cee0f9a..5f854f6 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -11,6 +11,8 @@ set $mod Mod4 +set $alt Mod1 + # Font for window titles. Will also be used by the bar unless a different font # is used in the bar {} block below. # This font is widely installed, provides lots of unicode glyphs, right-to-left @@ -84,6 +86,13 @@ bindsym $mod+Control+Shift+Down move container to output down bindsym $mod+Control+Shift+Up move container to output up bindsym $mod+Control+Shift+Right move container to output right +# Scroll through workspaces on given screen +bindsym $mod+$alt+$left workspace prev_on_output +bindsym $mod+$alt+$right workspace next_on_output +# Alternatively, you can use the cursor keys: +bindsym $mod+$alt+Left workspace prev_on_output +bindsym $mod+$alt+Right workspace next_on_output + # Move focused window bindsym $mod+Shift+$left move left 10 px bindsym $mod+Shift+$down move down 10 px