Initial commit

This commit is contained in:
Teo
2025-11-26 16:16:42 +01:00
commit 7a9756e0e1
9 changed files with 396 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import QtQuick
import Quickshell
import Quickshell.Hyprland
Item { // container, invisible
id: wLoader
Loader {
id: wallpaperLoader
active: false
sourceComponent: WallpaperPicker { id: wPicker }
}
GlobalShortcut {
name: "Wallpaper"
description: "Open wallpaper picker"
onPressed: {
wallpaperLoader.active = !wallpaperLoader.active
console.log("Pressed Meta+Shift+W (Hyprland global shortcut)")
}
}
function closeWallpaperPicker() {
wallpaperLoader.active = false
}
}