Added support for Quickshell

This commit is contained in:
Hannes
2026-02-18 16:11:51 +01:00
parent 8eef4c3989
commit 1c40f3a884
2 changed files with 62 additions and 1 deletions

View File

@@ -4,3 +4,7 @@ mode = "dark"
# where generated files go (optional, but good to define) # where generated files go (optional, but good to define)
output_dir = "~/.config/matugen/generated" output_dir = "~/.config/matugen/generated"
[templates.quickshell]
input_path = "~/.config/matugen/templates/quickshell.qml"
output_path = "~/.config/quickshell/colors/Colors.qml"

57
templates/quickshell.qml Normal file
View File

@@ -0,0 +1,57 @@
pragma Singleton
import QtQuick 2.15
QtObject {
// ===== PRIMARY =====
readonly property color primary: "{{colors.primary.default.hex}}"
readonly property color primary_fg: "{{colors.on_primary.default.hex}}"
readonly property color primaryContainer: "{{colors.primary_container.default.hex}}"
readonly property color primaryContainer_fg: "{{colors.on_primary_container.default.hex}}"
// ===== SECONDARY =====
readonly property color secondary: "{{colors.secondary.default.hex}}"
readonly property color secondary_fg: "{{colors.on_secondary.default.hex}}"
readonly property color secondaryContainer: "{{colors.secondary_container.default.hex}}"
readonly property color secondaryContainer_fg: "{{colors.on_secondary_container.default.hex}}"
// ===== TERTIARY =====
readonly property color tertiary: "{{colors.tertiary.default.hex}}"
readonly property color tertiary_fg: "{{colors.on_tertiary.default.hex}}"
readonly property color tertiaryContainer: "{{colors.tertiary_container.default.hex}}"
readonly property color tertiaryContainer_fg: "{{colors.on_tertiary_container.default.hex}}"
// ===== ERROR =====
readonly property color error: "{{colors.error.default.hex}}"
readonly property color error_fg: "{{colors.on_error.default.hex}}"
readonly property color errorContainer: "{{colors.error_container.default.hex}}"
readonly property color errorContainer_fg: "{{colors.on_error_container.default.hex}}"
// ===== BACKGROUND / SURFACE =====
readonly property color background: "{{colors.background.default.hex}}"
readonly property color background_fg: "{{colors.on_background.default.hex}}"
readonly property color surface: "{{colors.surface.default.hex}}"
readonly property color surface_fg: "{{colors.on_surface.default.hex}}"
readonly property color surfaceVariant: "{{colors.surface_variant.default.hex}}"
readonly property color surfaceVariant_fg: "{{colors.on_surface_variant.default.hex}}"
// ===== SURFACE CONTAINERS =====
readonly property color surfaceContainerLowest: "{{colors.surface_container_lowest.default.hex}}"
readonly property color surfaceContainerLow: "{{colors.surface_container_low.default.hex}}"
readonly property color surfaceContainer: "{{colors.surface_container.default.hex}}"
readonly property color surfaceContainerHigh: "{{colors.surface_container_high.default.hex}}"
readonly property color surfaceContainerHighest: "{{colors.surface_container_highest.default.hex}}"
// ===== OUTLINE / UTILITY =====
readonly property color outline: "{{colors.outline.default.hex}}"
readonly property color outlineVariant: "{{colors.outline_variant.default.hex}}"
readonly property color shadowColor: "{{colors.shadow.default.hex}}"
readonly property color scrimColor: "{{colors.scrim.default.hex}}"
// ===== INVERSE =====
readonly property color inverseSurface: "{{colors.inverse_surface.default.hex}}"
readonly property color inverseSurface_fg: "{{colors.inverse_on_surface.default.hex}}"
readonly property color inversePrimary: "{{colors.inverse_primary.default.hex}}"
}