Compare commits

...

2 commits

Author SHA1 Message Date
Peter Cai 846a7d1c1b Add tri-monitor preconfig for sway 2024-05-16 11:55:04 -04:00
Peter Cai 3f09dc68bf sway: Switch back to alacritty 2024-05-16 11:54:54 -04:00
2 changed files with 25 additions and 1 deletions

View file

@ -14,7 +14,7 @@ set $down j
set $up k
set $right l
# Your preferred terminal emulator
set $term wezterm
set $term alacritty
# Your preferred application launcher
# Note: pass the final command to swaymsg so that the resulting window can be opened
# on the original workspace that the command was run on.

View file

@ -0,0 +1,24 @@
# Workspaces on third display
bindsym $mod+Alt+Q workspace Q
bindsym $mod+Alt+W workspace W
bindsym $mod+Alt+E workspace E
bindsym $mod+Alt+R workspace R
bindsym $mod+Alt+T workspace T
bindsym $mod+Alt+Y workspace Y
bindsym $mod+Shift+Alt+Q move container to workspace Q
bindsym $mod+Shift+Alt+W move container to workspace W
bindsym $mod+Shift+Alt+E move container to workspace E
bindsym $mod+Shift+Alt+R move container to workspace R
bindsym $mod+Shift+Alt+T move container to workspace T
bindsym $mod+Shift+Alt+Y move container to workspace Y
bindsym $mod+Shift+Alt+P move workspace to output $output_third
# Bind secondary display workspaces to secondary with internal fallback
workspace Q output $output_third $output_secondary $output_internal
workspace W output $output_third $output_secondary $output_internal
workspace E output $output_third $output_secondary $output_internal
workspace R output $output_third $output_secondary $output_internal
workspace T output $output_third $output_secondary $output_internal
workspace Y output $output_third $output_secondary $output_internal