add quickshell

This commit is contained in:
Zoty 2026-04-15 10:38:34 -03:00
parent 3d48e35de5
commit 10960f620d
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
32 changed files with 1415 additions and 11 deletions

19
quickshell/Clock.qml Normal file
View file

@ -0,0 +1,19 @@
import Quickshell
import QtQuick
BarPill {
SystemClock { id: clock; precision: SystemClock.Seconds }
Text {
text: "󰥔"
color: Theme.yellow
font.pixelSize: Theme.fontSize
font.family: Theme.font
}
Text {
text: Qt.formatDateTime(clock.date, "hh:mm")
color: Theme.text
font.pixelSize: Theme.fontSize
font.family: Theme.font
}
}