Hooks: expose to grab the screen name

This commit is contained in:
Ly-sec 2025-09-04 19:15:50 +02:00
parent 46bc8939b4
commit a9affb5ae4
3 changed files with 10 additions and 4 deletions

View file

@ -47,7 +47,7 @@ ScrollView {
}
onActionClicked: {
if (wallpaperHookInput.text) {
HooksService.executeWallpaperHook("test")
HooksService.executeWallpaperHook("test", "test-screen")
}
}
Layout.fillWidth: true
@ -88,6 +88,11 @@ ScrollView {
label: "Hook Command Information"
description: "• Commands are executed via shell (sh -c)\n• Commands run in background (detached)\n• Test buttons execute with current values"
}
NLabel {
label: "Available Parameters"
description: "• Wallpaper Hook: $1 = wallpaper path, $2 = screen name\n• Theme Toggle Hook: $1 = true/false (dark mode state)"
}
}
}
}