24 lines
924 B
Nix
24 lines
924 B
Nix
{
|
|
wayland.windowManager.hyprland.settings = {
|
|
windowrulev2 = [
|
|
# --- POPUP RULES (Wifi, BT, Audio) ---
|
|
"float, class:^(org\.hakase\.popup\..*)$"
|
|
"animation slide right, class:^(org\.hakase\.popup\..*)$"
|
|
"dimaround, class:^(org\.hakase\.popup\..*)$"
|
|
# --- WALLPAPER PICKER ---
|
|
"float, class:^(org\.hakase\.switch-wallpaper)$"
|
|
"float, initialTitle:^(Wallpaper Selector)$"
|
|
"center, class:^(org\.hakase\.switch-wallpaper)$"
|
|
"center, initialTitle:^(Wallpaper Selector)$"
|
|
"size 60% 60%, class:^(org\.hakase\.switch-wallpaper)$"
|
|
"size 60% 60%, initialTitle:^(Wallpaper Selector)$"
|
|
"dimaround, class:^(org\.hakase\.switch-wallpaper)$"
|
|
"dimaround, initialTitle:^(Wallpaper Selector)$"
|
|
|
|
# Prevent Firefox and Terminal from stealing focus on launch
|
|
"suppressevent activate, workspace:20"
|
|
"noinitialfocus, workspace:20"
|
|
];
|
|
};
|
|
}
|