test script

This commit is contained in:
Zacharias-Brohn
2026-03-20 21:10:08 +01:00
parent 10b56e1e1b
commit 3c46256a9f
13 changed files with 109 additions and 33 deletions
+1 -1
View File
@@ -357,7 +357,7 @@ Singleton {
FileView {
id: fileView
path: `${Paths.config}/config.json`
path: "/etc/zshell-greeter/config.json"
watchChanges: true
onFileChanged: {
+1 -1
View File
@@ -6,5 +6,5 @@ import Quickshell.Io
Singleton {
id: root
property string lockscreenBg: `${Quickshell.shellDir}/images/greeter_bg.png`
property string lockscreenBg: "/etc/zshell-greeter/images/greeter_bg.png"
}
+1 -1
View File
@@ -15,7 +15,7 @@ Item {
anchors.fill: parent
asynchronous: true
fillMode: Image.PreserveAspectCrop
source: `${Quickshell.shellDir}/images/.face`
source: "/etc/zshell-greeter/images/face"
sourceSize.height: parent.height
sourceSize.width: parent.width
}
+7
View File
@@ -0,0 +1,7 @@
[terminal]
vt = 1
switch = true
[default_session]
command = "/usr/bin/start-zshell-greeter"
user = "greeter"
+2 -2
View File
@@ -7,7 +7,7 @@ export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
export EGL_PLATFORM=gbm
if command -v start-hyprland >/dev/null 2>&1; then
exec start-hyprland -- -c /etc/xdg/quickshell/zshell-greeter/scripts/zshell-hyprland.conf
exec start-hyprland -- -c /etc/zshell-greeter/zshell-hyprland.conf
else
exec Hyprland -c /etc/xdg/quickshell/zshell-greeter/scripts/zshell-hyprland.conf
exec Hyprland -c /etc/zshell-greeter/zshell-hyprland.conf
fi