move everything to root

This commit is contained in:
Benjamin Palko 2025-07-17 22:22:19 -04:00
parent 2a7de7e56a
commit 5feccc7452
15 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,35 @@
import QtQuick
import Quickshell
import Quickshell.Wayland
import "root:styled"
Variants {
model: Quickshell.screens
StyledWindow {
id: background
required property ShellScreen modelData
screen: modelData
name: "background"
WlrLayershell.exclusionMode: ExclusionMode.Ignore
WlrLayershell.layer: WlrLayer.Background
color: "black"
anchors.top: true
anchors.bottom: true
anchors.left: true
anchors.right: true
Image {
id: wallpaper
anchors.fill: parent
opacity: 1
source: "/home/baobeld/Wallpapers/bailey-zindel-NRQV-hBF10M-unsplash.jpg"
}
}
}