ghostty, wlogout, xwayland

This commit is contained in:
atagen 2025-07-31 18:07:18 +10:00
parent 353499a037
commit 6337ffc3b4
12 changed files with 206 additions and 116 deletions

View file

@ -6,11 +6,12 @@
let
inherit (config) rice;
pal = rice.palette.hex;
pkg = pkgs.wlogout;
in
{
hm.programs.wlogout = {
enable = true;
package = pkgs.wleave;
package = pkg;
layout = builtins.fromJSON (builtins.readFile ./logout/layout);
style =
with pal;
@ -25,8 +26,8 @@ in
"#WINLOGO"
]
[
"${pkgs.wlogout}/share/wlogout"
"${pkgs.wlogout}/etc/wlogout"
"${pkg}/share/wlogout"
"${pkg}/etc/wlogout"
util.bg
bright.yellow
util.bg
@ -41,5 +42,5 @@ in
);
};
hm.home.packages = [ pkgs.wleave ];
hm.home.packages = [ pkg ];
}