From 6eeb676f144504430b5ad9f7df130f6287f89f36 Mon Sep 17 00:00:00 2001 From: Hannes Date: Sun, 14 Jun 2026 00:50:35 +0200 Subject: [PATCH] readded some files that need to be there --- .gitignore | 1 - config/Colors.qml.template | 57 ++++++++++++++++++++++++++ config/path/ConfigPath.qml.template | 6 +++ config/path/WallpaperPath.qml.template | 7 ++++ 4 files changed, 70 insertions(+), 1 deletion(-) create mode 100644 config/Colors.qml.template create mode 100644 config/path/ConfigPath.qml.template create mode 100644 config/path/WallpaperPath.qml.template diff --git a/.gitignore b/.gitignore index ee99a0a..3c93bdc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ *.svg Colors.qml -*.template modules/wlogout/scripts/helper.sh config/path/ConfigPath.qml config/path/WallpaperPath.qml \ No newline at end of file diff --git a/config/Colors.qml.template b/config/Colors.qml.template new file mode 100644 index 0000000..dfd8f8c --- /dev/null +++ b/config/Colors.qml.template @@ -0,0 +1,57 @@ +pragma Singleton +import QtQuick 2.15 + +QtObject { + + // ===== PRIMARY ===== + readonly property color primary: "#cbcb77" + readonly property color primary_fg: "#323200" + readonly property color primaryContainer: "#494900" + readonly property color primaryContainer_fg: "#e7e790" + + // ===== SECONDARY ===== + readonly property color secondary: "#cac8a5" + readonly property color secondary_fg: "#323218" + readonly property color secondaryContainer: "#48482d" + readonly property color secondaryContainer_fg: "#e6e4bf" + + // ===== TERTIARY ===== + readonly property color tertiary: "#a4d0bd" + readonly property color tertiary_fg: "#0a372a" + readonly property color tertiaryContainer: "#254e40" + readonly property color tertiaryContainer_fg: "#bfecd9" + + // ===== ERROR ===== + readonly property color error: "#ffb4ab" + readonly property color error_fg: "#690005" + readonly property color errorContainer: "#93000a" + readonly property color errorContainer_fg: "#ffdad6" + + // ===== BACKGROUND / SURFACE ===== + readonly property color background: "#14140c" + readonly property color background_fg: "#e6e3d5" + + readonly property color surface: "#14140c" + readonly property color surface_fg: "#e6e3d5" + + readonly property color surfaceVariant: "#48473a" + readonly property color surfaceVariant_fg: "#c9c7b6" + + // ===== SURFACE CONTAINERS ===== + readonly property color surfaceContainerLowest: "#0f0f07" + readonly property color surfaceContainerLow: "#1c1c14" + readonly property color surfaceContainer: "#202018" + readonly property color surfaceContainerHigh: "#2b2a22" + readonly property color surfaceContainerHighest: "#36352c" + + // ===== OUTLINE / UTILITY ===== + readonly property color outline: "#939182" + readonly property color outlineVariant: "#48473a" + readonly property color shadowColor: "#000000" + readonly property color scrimColor: "#000000" + + // ===== INVERSE ===== + readonly property color inverseSurface: "#e6e3d5" + readonly property color inverseSurface_fg: "#313128" + readonly property color inversePrimary: "#616219" +} diff --git a/config/path/ConfigPath.qml.template b/config/path/ConfigPath.qml.template new file mode 100644 index 0000000..c7e9ac9 --- /dev/null +++ b/config/path/ConfigPath.qml.template @@ -0,0 +1,6 @@ +pragma Singleton +import QtQuick 2.15 + +QtObject { + readonly property string path: "__CONFIG_DIR__" +} diff --git a/config/path/WallpaperPath.qml.template b/config/path/WallpaperPath.qml.template new file mode 100644 index 0000000..ecfaacd --- /dev/null +++ b/config/path/WallpaperPath.qml.template @@ -0,0 +1,7 @@ +pragma Singleton +import QtQuick +import Quickshell + +QtObject { + property string wallpaperDir: "__CONFIG_DIR__" +} \ No newline at end of file