test script for scheme and wallpaper

This commit is contained in:
2026-03-25 13:34:56 +01:00
parent 31e2cfe850
commit 50d4582b49
2 changed files with 14 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env bash
BINARY="../Greeter/scripts/start-zshell-greeter"
CONFIG="../Greeter/scripts/zshell-hyprland.conf"
GREETD_CONFIG="../Greeter/scripts/greeter-config.toml"
WALLPAPER="$HOME/.local/state/zshell/lockscreen_bg.png"
FACE="$HOME/.face"
main() {
sudo mkdir -p "/etc/zshell-greeter/images"
sudo cp "$BINARY" "/usr/bin"
sudo cp "$CONFIG" "/etc/zshell-greeter"
sudo cp "$WALLPAPER" "/etc/zshell-greeter/images/greeter_bg.png"
sudo cp "$FACE" "/etc/zshell-greeter/images/face"
sudo cp "$GREETD_CONFIG" "/etc/greetd/config.toml"
}
main "$@"