Put all the QML colors into a single standalone configurable file

This commit is contained in:
Tomas Rivera
2026-03-11 10:48:44 +01:00
parent 3bc27a2a4f
commit d374a70c9c
29 changed files with 112 additions and 883 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
import QtQuick
import QtQuick.Layouts
import Quickshell.Io
import "../theme" as Theme
import ".."
Text {
@@ -8,12 +9,12 @@ Text {
font.family: "BigBlueTermPlusNerdFont"
font.pointSize: 16
font.bold: true
color: "white"
color: Theme.Colors.timeColor1
opacity: 0.5
Process {
id: dateProc
command: ["date", "+%H:%M"]
command: ["date", "+%Y-%m-%d\(%a\)\ %T"]
running: true
stdout: SplitParser {
onRead: data => timetxt.text = data