diff options
author | tzlil <tzlils@protonmail.com> | 2023-03-23 16:08:53 +0200 |
---|---|---|
committer | tzlil <tzlils@protonmail.com> | 2023-03-23 16:08:53 +0200 |
commit | 2e917bc65bba94a9b4b4eaddb90db2824e869ac9 (patch) | |
tree | 09b18e412fe131a7ff3974a2f58eba9b71d5e297 /mixins | |
parent | de6461f9adf9b46c15b7f608290a1c8a35ebc829 (diff) |
add greet background and remove stdio from run
Diffstat (limited to 'mixins')
-rw-r--r-- | mixins/greet.nix | 45 |
1 files changed, 15 insertions, 30 deletions
diff --git a/mixins/greet.nix b/mixins/greet.nix index 2da474b..103b37a 100644 --- a/mixins/greet.nix +++ b/mixins/greet.nix @@ -7,37 +7,22 @@ user = "tzlil"; users.users.greeter.packages = [pkgs.sway]; - greet = "${pkgs.greetd.wlgreet.out}/bin/wlgreet -e ${pkgs.writeText "config.toml" " -[background] -red = 0 -green = 0 -blue = 0 -opacity = 0.9 - -[headline] -red = 1.0 -green = 1.0 -blue = 1.0 -opacity = 1.0 - -[prompt] -red = 1.0 -green = 1.0 -blue = 1.0 -opacity = 1.0 - -[promptErr] -red = 1.0 -green = 1.0 -blue = 1.0 -opacity = 1.0 + greet = "${pkgs.greetd.gtkgreet.out}/bin/gtkgreet -l -s ${pkgs.writeText "gtkgreet.css" " +window { + background-image: url(\"${pkgs.fetchurl { + url = "https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fget.wallhere.com%2Fphoto%2FSerial-Experiments-Lain-anime-1363057.jpg&f=1&nofb=1&ipt=ba4bec61767537f6da6f0298f40e6a8ff2a5f1dc0e075a40bf77ba3a98654e15&ipo=images"; + sha256 = "sha256-oFUfNBdodHP7p/tAlwttzsY2SIyfsEgya6sN2GXEGy8="; + }}\"); + background-size: cover; + background-position: center; +} -[border] -red = 1.0 -green = 1.0 -blue = 1.0 -opacity = 1.0 - "})}"; +box#body { + background-color: rgba(50, 50, 50, 0.5); + border-radius: 10px; + padding: 50px; +} +"}"; kiosk = command: "${pkgs.cage.out}/bin/cage -- ${command}"; in { |