From 83e107c13c34d97d7e0c74956caebdbfdce92aff Mon Sep 17 00:00:00 2001 From: finga Date: Sat, 31 May 2025 12:48:30 +0200 Subject: [PATCH 1/3] config: Disable tray output Disable to put tray icons anywhere on the screen. --- .config/sway/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/sway/config b/.config/sway/config index 7a40065..aae5e37 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -147,7 +147,7 @@ bar { status_command i3status-rs font pango:NotoSansMono-Regular, forkawesome 8 position top - tray_output primary + tray_output off workspace_buttons yes mode dock modifier $mod @@ -164,7 +164,7 @@ bar { status_command i3status-rs ~/.config/i3status-rust/secondary.toml font pango:NotoSansMono-Regular, forkawesome 8 position top - tray_output primary + tray_output off workspace_buttons yes mode dock modifier $mod From e9fbc459e5888735fe7c108e5ed347120f1aa3f5 Mon Sep 17 00:00:00 2001 From: finga Date: Sat, 31 May 2025 12:49:19 +0200 Subject: [PATCH 2/3] config: Fix positioning and focusing screens Remove negative offsets and force focus on first screen. --- .config/sway/config.d/00-rotate.conf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.config/sway/config.d/00-rotate.conf b/.config/sway/config.d/00-rotate.conf index 318a7cf..9efef45 100644 --- a/.config/sway/config.d/00-rotate.conf +++ b/.config/sway/config.d/00-rotate.conf @@ -1,2 +1,3 @@ -output DP-1 pos 0 0 -output HDMI-A-2 pos 1920 -380 transform 270 +output DP-1 pos 0 380 +output HDMI-A-2 pos 1920 0 transform 270 +focus output DP-1 From 92d0678ff1e556bbf9e132b2b34e25c6765bf84b Mon Sep 17 00:00:00 2001 From: finga Date: Sat, 31 May 2025 12:50:31 +0200 Subject: [PATCH 3/3] keybindings: Fix keybinding to move windows Fix the keybindings to put windows to the 11th and 12th workspaces. --- .config/sway/config.d/10-workspaces.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/sway/config.d/10-workspaces.conf b/.config/sway/config.d/10-workspaces.conf index 41f3b7f..c6f7cbf 100644 --- a/.config/sway/config.d/10-workspaces.conf +++ b/.config/sway/config.d/10-workspaces.conf @@ -57,5 +57,5 @@ bindsym $mod+Shift+7 move container to workspace number $ws7 bindsym $mod+Shift+8 move container to workspace number $ws8 bindsym $mod+Shift+9 move container to workspace number $ws9 bindsym $mod+Shift+0 move container to workspace number $ws10 -bindsym $mod+Shift+underscore move container to workspace number $ws11 -bindsym $mod+Shift+plus move container to workspace number $ws12 +bindsym $mod+Shift+minus move container to workspace number $ws11 +bindsym $mod+Shift+equal move container to workspace number $ws12