13 lines
297 B
Nix
13 lines
297 B
Nix
{
|
|
wayland.windowManager.hyprland.settings = {
|
|
windowrule = [
|
|
# Make all inactive windows transparent
|
|
"match:class .*, opacity 1 0.8"
|
|
# But make Firefox windows opaque again (last rule wins)
|
|
"match:title (?i)bitwarden, float on"
|
|
];
|
|
workspace = [
|
|
];
|
|
};
|
|
}
|