diff --git a/Modules/Background/Background.qml b/Modules/Background/Background.qml index c1f3d12..c587bbe 100644 --- a/Modules/Background/Background.qml +++ b/Modules/Background/Background.qml @@ -6,7 +6,7 @@ import qs.Services ShellRoot { property var modelData - property string wallpaperSource: "/home/seb/Development/misc/Noctalia/Assets/Tests/wallpaper.png" + property string wallpaperSource: Qt.resolvedUrl("../../Assets/Tests/wallpaper.png") Variants { model: Quickshell.screens diff --git a/Modules/Background/Overview.qml b/Modules/Background/Overview.qml index fd65eca..2bbc85b 100644 --- a/Modules/Background/Overview.qml +++ b/Modules/Background/Overview.qml @@ -5,7 +5,7 @@ import Quickshell.Wayland import qs.Services ShellRoot { - property string wallpaperSource: "/home/lysec/Pictures/wallpapers/wallhaven-6lqvql.jpg" + property string wallpaperSource: Qt.resolvedUrl("../../Assets/Tests/wallpaper.png") property var modelData Variants { diff --git a/shell.qml b/shell.qml index 49f416c..55872f2 100644 --- a/shell.qml +++ b/shell.qml @@ -20,7 +20,7 @@ ShellRoot { modelData: item } } - + Variants { model: Quickshell.screens @@ -29,6 +29,14 @@ ShellRoot { } } + Variants { + model: Quickshell.screens + + delegate: Overview { + modelData: item + } + } + DemoPanel { id: demoPanel }