Change WS6 to be for Torrents.

This commit is contained in:
2026-07-26 17:25:15 -07:00
parent 6d0b0f52f5
commit 5175b7ff0c
+9 -2
View File
@@ -198,8 +198,8 @@ set $ws3 "3 - PRG"
set $ws4 "4 - FLT" set $ws4 "4 - FLT"
# Chats # Chats
set $ws5 "5 - CHT" set $ws5 "5 - CHT"
# Editors # Torrents
set $ws6 "6 - EDT" set $ws6 "6 - TOR"
# Entertainment # Entertainment
set $ws7 "7 - ENT" set $ws7 "7 - ENT"
# Music # Music
@@ -234,6 +234,9 @@ bindsym $mod+Shift+9 move container to workspace number $ws9
bindsym $mod+Shift+0 move container to workspace number $ws10 bindsym $mod+Shift+0 move container to workspace number $ws10
## Keep certain programs in certain tabs. ## ## Keep certain programs in certain tabs. ##
# Use the `xprop` command to find the class of a program.
# (?i) makes the regex case insensitive.
assign [class="(?i)Navigator"] $ws2 assign [class="(?i)Navigator"] $ws2
assign [class="(?i).*Firefox.*"] $ws2 assign [class="(?i).*Firefox.*"] $ws2
@@ -241,6 +244,8 @@ assign [class="(?i).*Codium.*"] $ws3
assign [class="(?i).*Code.*"] $ws4 assign [class="(?i).*Code.*"] $ws4
assign [class="(?i).*Transmission.*"] $ws6
assign [class="(?i).*VPN.*"] $ws10 assign [class="(?i).*VPN.*"] $ws10
assign [class="(?i).*Mullvad.*"] $ws10 assign [class="(?i).*Mullvad.*"] $ws10
@@ -323,3 +328,5 @@ exec light -O
exec light -N 0 exec light -N 0
exec setxkbmap -layout us -variant altgr-intl exec setxkbmap -layout us -variant altgr-intl
# Use the `xev` command to see the name and code of a keyboard key.