diff options
Diffstat (limited to 'config/BackgroundConfig.qml')
| -rw-r--r-- | config/BackgroundConfig.qml | 16 |
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 + } +} |