Added Network icon to bar and rework some of the debug prints

This commit is contained in:
Hannes
2026-02-16 20:34:56 +01:00
parent dac2760b32
commit b0c1bc7973
8 changed files with 96 additions and 12 deletions
+3 -2
View File
@@ -11,7 +11,7 @@ Item { // container, invisible
id: generateThumbs
command: ["sh", "-c", Quickshell.env("HOME") + "/.config/quickshell/modules/wp/generate-wallpaper-thumbs.sh"]
stdout: StdioCollector {
onStreamFinished: console.log(`line read: ${this.text}`)
onStreamFinished: console.log(this.text)
}
}
@@ -26,7 +26,8 @@ Item { // container, invisible
description: "Open wallpaper picker"
onPressed: {
generateThumbs.startDetached()
// generateThumbs.startDetached()
generateThumbs.running = true
wallpaperLoader.active = !wallpaperLoader.active
console.log("Pressed Meta+Shift+W (Hyprland global shortcut)")
}