27 lines
945 B
Nix
27 lines
945 B
Nix
{
|
|
wayland.windowManager.hyprland.settings = {
|
|
workspace = [
|
|
];
|
|
|
|
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)$"
|
|
|
|
# --- CAVA RULES ---
|
|
"workspace special:music silent, title:^(cava)$"
|
|
"workspace special:music silent, initialTitle:^(cava)$"
|
|
];
|
|
};
|
|
}
|