Files
dots/home/desktops/hyprland/rules.nix
2025-12-01 18:24:34 +01:00

19 lines
370 B
Nix

{
layer = [];
window =
[
"float, class:^(hyprland-share-picker)$"
"workspace 3, class:^(Electron)$, title:^(BSC)$" # BetterSoundCloud
"workspace 3, class:^(opensoundcloud)$"
]
++ map (rule: "${rule}, class:^(xdg-desktop-portal-gtk)$") [
"float"
"size 800 600"
"center 1"
"dimaround"
];
workspace = [];
}