Enable translucency again

This commit is contained in:
Evie Litherland-Smith 2024-12-09 15:14:57 +00:00
parent 9daa422d20
commit deaa8827a6
2 changed files with 8 additions and 2 deletions

View file

@ -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";

View file

@ -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;