From 28a3cea50efbaaff9143e25935d2f2755dd38fcd Mon Sep 17 00:00:00 2001 From: finga Date: Sun, 27 Oct 2024 09:54:27 +0100 Subject: [PATCH] screens: Add screens 0, 11 and 12 Screen 0 is on '`', 11 on '-' and 12 on '='. --- .config/i3/config | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/.config/i3/config b/.config/i3/config index 6694785..2c43e0c 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -102,6 +102,7 @@ bindsym $mod+q focus child # Define names for default workspaces for which we configure key bindings later on. # We use variables to avoid repeating the names in multiple places. +set $ws0 "0" set $ws1 "1" set $ws2 "2" set $ws3 "3" @@ -112,8 +113,11 @@ set $ws7 "7" set $ws8 "8" set $ws9 "9" set $ws10 "10" +set $ws11 "11" +set $ws12 "12" # switch to workspace +bindsym $mod+grave workspace $ws0 bindsym $mod+1 workspace $ws1 bindsym $mod+2 workspace $ws2 bindsym $mod+3 workspace $ws3 @@ -124,8 +128,11 @@ bindsym $mod+7 workspace $ws7 bindsym $mod+8 workspace $ws8 bindsym $mod+9 workspace $ws9 bindsym $mod+0 workspace $ws10 +bindsym $mod+minus workspace $ws11 +bindsym $mod+equal workspace $ws12 # move focused container to workspace +bindsym $mod+Shift+grave move container to workspace $ws0 bindsym $mod+Shift+1 move container to workspace $ws1 bindsym $mod+Shift+2 move container to workspace $ws2 bindsym $mod+Shift+3 move container to workspace $ws3 @@ -136,6 +143,8 @@ bindsym $mod+Shift+7 move container to workspace $ws7 bindsym $mod+Shift+8 move container to workspace $ws8 bindsym $mod+Shift+9 move container to workspace $ws9 bindsym $mod+Shift+0 move container to workspace $ws10 +bindsym $mod+Shift+underscore move container to workspace $ws11 +bindsym $mod+Shift+plus move container to workspace $ws12 # reload the configuration file bindsym $mod+Shift+c reload @@ -246,14 +255,16 @@ bar { } } +workspace $ws0 output $screen0 workspace $ws1 output $screen0 workspace $ws2 output $screen0 workspace $ws3 output $screen0 workspace $ws4 output $screen0 workspace $ws5 output $screen0 - -workspace $ws10 output $screen1 -workspace $ws9 output $screen1 -workspace $ws8 output $screen1 -workspace $ws7 output $screen1 workspace $ws6 output $screen1 +workspace $ws7 output $screen1 +workspace $ws8 output $screen1 +workspace $ws9 output $screen1 +workspace $ws10 output $screen1 +workspace $ws11 output $screen1 +workspace $ws12 output $screen1