ecb13d8b19
vidoes are now easier to look at even when unfocused
13 lines
316 B
Nix
13 lines
316 B
Nix
{
|
|
wayland.windowManager.hyprland.settings = {
|
|
windowrulev2 = [
|
|
# Make all inactive windows transparent
|
|
"opacity 0.99 0.8, class:.*"
|
|
# But make Firefox windows opaque again (last rule wins)
|
|
"opacity 0.99 0.99, class:(?i)(firefox|youtube|jellyfin)"
|
|
];
|
|
workspace = [
|
|
];
|
|
};
|
|
}
|