revert(gaming): move steam back to special workspace

Reverts the recent change that moved Steam into a named workspace. Steam is now handled via a special workspace again. The Waybar module configuration has also been updated to reflect this change.
This commit is contained in:
kenji
2026-03-15 09:22:00 -05:00
parent ecb13d8b19
commit 13524322a2
2 changed files with 7 additions and 10 deletions
+3 -2
View File
@@ -118,7 +118,6 @@ in {
format-icons = { format-icons = {
"music" = "󰎆"; "music" = "󰎆";
"gaming" = "󰊖"; "gaming" = "󰊖";
"steam" = "󰓓";
"default" = ""; "default" = "";
"active" = "󱓻"; "active" = "󱓻";
@@ -164,13 +163,15 @@ in {
show-special = true; show-special = true;
special-visible-only = true; special-visible-only = true;
all-outputs = true; all-outputs = true;
ignore-workspaces = ["^([0-9]+|gaming|steam|music)$"]; ignore-workspaces = ["^([0-9]+|gaming|music)$"];
format = "{icon}"; format = "{icon}";
format-icons = { format-icons = {
"special:youtube" = "󰗃"; "special:youtube" = "󰗃";
"special:steam" = "󰓓";
"special:custom" = "󱗼"; "special:custom" = "󱗼";
"special:preload" = "󱗼"; "special:preload" = "󱗼";
"youtube" = "󰗃"; "youtube" = "󰗃";
"steam" = "󰓓";
"custom" = "󱗼"; "custom" = "󱗼";
"preload" = "󱗼"; "preload" = "󱗼";
"default" = "󱗼"; "default" = "󱗼";
+4 -8
View File
@@ -61,26 +61,22 @@ in {
wayland.windowManager.hyprland.settings = { wayland.windowManager.hyprland.settings = {
workspace = [ workspace = [
"name:gaming, monitor:0, default:true" "name:gaming, monitor:0, default:true"
"name:steam, monitor:0, default:true"
]; ];
exec-once = [ exec-once = [
# No longer launching steam on startup "[workspace special:steam silent] uwsm app -- steam"
# "[workspace special:steam silent] uwsm app -- steam"
]; ];
bindd = [ bindd = [
# "SUPER, A, Toggle Steam, togglespecialworkspace, steam" "SUPER, A, Toggle Steam, togglespecialworkspace, steam"
# "SUPER SHIFT, A, Move to Steam Special Workspace, movetoworkspace, special:steam" "SUPER SHIFT, A, Move to Steam Special Workspace, movetoworkspace, special:steam"
"SUPER, G, Switch to Gaming Workspace, workspace, name:gaming" "SUPER, G, Switch to Gaming Workspace, workspace, name:gaming"
"SUPER, A, Switch to Steam Workspace, workspace, name:steam"
]; ];
windowrulev2 = windowrulev2 =
[ [
# --- STEAM LAUNCHER RULES --- # --- STEAM LAUNCHER RULES ---
"workspace name:steam, class:^(steam)$" "workspace special:steam silent, class:^(steam)$"
# "workspace special:steam silent, class:^(steam)$"
"noinitialfocus, class:^(steam)$" "noinitialfocus, class:^(steam)$"
"suppressevent activate, class:^(steam)$" "suppressevent activate, class:^(steam)$"
] ]