Initial Commit

This commit is contained in:
Amaro Lopes
2025-09-21 00:47:06 -03:00
commit 2445e21f0b
11 changed files with 795 additions and 0 deletions

19
Common/Theme.qml Normal file
View File

@@ -0,0 +1,19 @@
pragma Singleton
import Quickshell
import QtQuick
Singleton {
id: timeRoot
readonly property int barSize: 35
readonly property double heightGaps: barSize * 0.8
readonly property string fontFamily: "IBM Plex Mono"
// Colors
property double barOpacity: 0.2
property color backgroudColor: Qt.rgba(0.27, 0.28, 0.35)
property color foregroundColor: Qt.rgba(0.27, 0.28, 0.35)
}