15 lines
443 B
Nix
15 lines
443 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\..*)$"
|
|
|
|
# Prevent Firefox and Terminal from stealing focus on launch
|
|
"suppressevent activate, workspace:20"
|
|
"noinitialfocus, workspace:20"
|
|
];
|
|
};
|
|
}
|