Enable translucency again
This commit is contained in:
parent
9daa422d20
commit
deaa8827a6
|
@ -205,7 +205,12 @@
|
|||
enable = true;
|
||||
image = ./wallpapers/tropic_island_day.jpg;
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/one-light.yaml";
|
||||
opacity.popups = 0.8;
|
||||
opacity = {
|
||||
applications = 0.9;
|
||||
desktop = 0.8;
|
||||
popups = 0.8;
|
||||
terminal = 0.9;
|
||||
};
|
||||
cursor = {
|
||||
package = pkgs.volantes-cursors;
|
||||
name = "volantes_cursors";
|
||||
|
|
|
@ -292,6 +292,7 @@
|
|||
style =
|
||||
let
|
||||
scheme = config.lib.stylix.scheme.withHashtag;
|
||||
opacity = config.stylix.opacity.desktop;
|
||||
in
|
||||
''
|
||||
* {
|
||||
|
@ -307,7 +308,7 @@
|
|||
}
|
||||
|
||||
window > box {
|
||||
color: ${scheme.base05};
|
||||
color: alpha(${scheme.base05}, ${toString opacity});
|
||||
background: ${scheme.base00};
|
||||
margin: 5px 5px 0px;
|
||||
padding: 0px;
|
||||
|
|
Loading…
Reference in a new issue