summaryrefslogtreecommitdiff
path: root/config/BackgroundConfig.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-05 10:19:46 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-05 10:19:46 +1000
commitc665c0ca98d72c172893e8bbd9c893aaa2b9f46e (patch)
tree160713bc48b5332c0534d0d235ef7f100344eb58 /config/BackgroundConfig.qml
parentbar: add scroll actions to fillers (diff)
downloadcaelestia-shell-c665c0ca98d72c172893e8bbd9c893aaa2b9f46e.tar.gz
caelestia-shell-c665c0ca98d72c172893e8bbd9c893aaa2b9f46e.tar.bz2
caelestia-shell-c665c0ca98d72c172893e8bbd9c893aaa2b9f46e.zip
feat: border + colour changes
Diffstat (limited to 'config/BackgroundConfig.qml')
-rw-r--r--config/BackgroundConfig.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/config/BackgroundConfig.qml b/config/BackgroundConfig.qml
new file mode 100644
index 0000000..a4481fd
--- /dev/null
+++ b/config/BackgroundConfig.qml
@@ -0,0 +1,16 @@
+pragma Singleton
+
+import Quickshell
+import QtQuick
+
+Singleton {
+ id: root
+
+ readonly property Border border: Border {}
+
+ component Border: QtObject {
+ readonly property bool enabled: false
+ readonly property int thickness: Appearance.padding.normal
+ readonly property int rounding: Appearance.rounding.large
+ }
+}