[hyprland,eww] Fixes settings after version upgrade

This commit is contained in:
2026-05-30 14:14:44 -07:00
parent a357e7a622
commit 07280e20ea
7 changed files with 49 additions and 45 deletions

View File

@@ -108,25 +108,24 @@ in
};
};
wayland.windowManager.hyprland.settings.windowrulev2 = [
wayland.windowManager.hyprland.settings.windowrule = [
# Set up full-screen games on monitor 1 (since window 0 is the vertical one.)
"monitor 1,class:^steam_app_\d+$"
"float,class:^steam_app_\d+$"
"monitor 1,fullscreen:1"
"center,class:^steam_app_\d+$"
# "match:class ^steam_app_\d+$, float"
"match:class ^steam_app_\d+$, fullscreen 1, monitor 1"
"match:class ^steam_app_\d+$, center on"
# Make sure WoW spawns on the right monitor and that Battlenet floats so it renders correctly
"monitor 1,title:^World of Warcraft$"
"fullscreen,title:^World of Warcraft$"
"monitor 1,title:^Battle.net$"
"float,title:^Battle.net$"
"match:title ^World of Warcraft$, monitor 1"
"match:title ^World of Warcraft$, fullscreen on"
"match:title ^Battle.net$, monitor 1"
"match:title ^Battle.net$, float on"
# Make Balatro into a regular window.
"monitor 1,title:^Balatro$"
"tile,title:^Balatro$"
"match:title ^Balatro$, monitor 1"
"match:title ^Balatro$, tile on"
# Load Cyberpunk 2077 on the right monitor.
"monitor 1,class:steam_app_1091500"
"fullscreen,class:steam_app_1091500"
"match:class steam_app_1091500, monitor 1"
"match:class steam_app_1091500, fullscreen on"
];
}