mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
b908e61dfa
This brings a few advantages: - Use of float instead of strings to represent float values, - Use of structure settings, and - Better type checking for some settings Also add thiagokokada as codeowner of picom.
18 lines
No EOL
583 B
Text
18 lines
No EOL
583 B
Text
active-opacity = 1.000000;
|
|
backend = "xrender";
|
|
dbe = true;
|
|
fade-delta = 5;
|
|
fade-exclude = [ "window_type *= 'menu'" , "name ~= 'Firefox$'" , "focused = 1" ];
|
|
fade-in-step = 0.040000;
|
|
fade-out-step = 0.040000;
|
|
fading = true;
|
|
inactive-opacity = 1.000000;
|
|
opacity-rule = [ ];
|
|
shadow = true;
|
|
shadow-exclude = [ "window_type *= 'menu'" , "name ~= 'Firefox$'" , "focused = 1" ];
|
|
shadow-offset-x = -10;
|
|
shadow-offset-y = -15;
|
|
shadow-opacity = 0.800000;
|
|
unredir-if-possible = true;
|
|
vsync = true;
|
|
wintypes: { dropdown_menu = { opacity = 1.000000; }; popup_menu = { opacity = 1.000000; }; }; |