Fixed wlogout icons

This commit is contained in:
2025-11-22 18:46:36 -05:00
parent 97ef9a7a9e
commit 72c811c67e
2 changed files with 6 additions and 1 deletions

View File

@@ -44,6 +44,10 @@
keybind = "r"; keybind = "r";
} }
]; ];
# * IMPORTANT
# * The for some reason the SVG icons will not be rendered when wlogout is called
# * from a hyprland keybind unless librsvg is installed.
# * See packages.nix (programs.gdk-pixbuf.modulePackages = [ pkgs.librsvg ];)
style = with config.lib.stylix.colors.withHashtag; '' style = with config.lib.stylix.colors.withHashtag; ''
* { * {
font-family: "Rubik Light"; font-family: "Rubik Light";
@@ -52,7 +56,7 @@
} }
window { window {
background: url("${config.xdg.userDirs.extraConfig.XDG_WALLPAPERS_DIR}/lanterns_of_twilight.png"); background: url("${config.xdg.userDirs.extraConfig.XDG_WALLPAPERS_DIR}/sunset_bay.jpg");
background-size: cover; background-size: cover;
} }

View File

@@ -17,6 +17,7 @@
# enable = true; # enable = true;
# enableSSHSupport = true; # enableSSHSupport = true;
# }; # };
gdk-pixbuf.modulePackages = [ pkgs.librsvg ];
nix-ld.enable = true; nix-ld.enable = true;
zsh.enable = true; zsh.enable = true;
}; };