Compare commits

...

4 commits

Author SHA1 Message Date
02a9c36940 workspaces: Set output screen of workspaces 2025-01-26 14:40:42 +01:00
ae8de34f69 Extend keybindings for handling tiling/floating modes 2025-01-26 14:39:53 +01:00
6bd589e725 Update fullscreen toggling of windows keybinding 2025-01-26 14:38:25 +01:00
0f4249c844 Fix scratchpad keybindings
When they were introduced due to the switch to sway, they conflicted
with the workspace setup.
2025-01-26 14:36:15 +01:00
2 changed files with 23 additions and 5 deletions

View file

@ -39,14 +39,17 @@ bindsym $mod+h splith
bindsym $mod+v splitv
# toggle fullscreen mode
bindsym $mod+c fullscreen toggle
bindsym $mod+c fullscreen
# change container layout (stacked, tabbed, toggle split)
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split
# toggle tiling / floating
# toggle the current focus between tiling and floating mode
bindsym $mod+Shift+space floating toggle
# swap focus between the tiling area and the floating area
bindsym $mod+space focus mode_toggle
# focus the parent container
@ -65,11 +68,11 @@ bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut.
# You can send windows there and get them back later.
# Move the currently focused window to the scratchpad
bindsym $mod+Shift+minus move scratchpad
bindsym $mod+delete move scratchpad
# Show the next scratchpad window or hide the focused scratchpad window.
# If there are multiple scratchpad windows, this command cycles through them.
bindsym $mod+minus scratchpad show
bindsym $mod+insert scratchpad show
#
# Moving around:

View file

@ -1,5 +1,5 @@
#
# Workspace setup
# Setup workspaces
#
set $ws0 "0"
set $ws1 "1"
@ -15,6 +15,21 @@ set $ws10 "10"
set $ws11 "11"
set $ws12 "12"
# Bin workspaces to specific screens
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 $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
# Switch to workspace
bindsym $mod+grave workspace number $ws0
bindsym $mod+1 workspace number $ws1