removed eww and waybar added quickshell

This commit is contained in:
samantha42
2026-05-18 08:19:40 +02:00
parent f7d6f07e3a
commit 36ee6f35da
36 changed files with 713 additions and 1657 deletions

View File

@@ -0,0 +1,29 @@
import QtQuick
// Mirrors eww clock-widget: click to toggle time ↔ date
Rectangle {
id: root
property string clockTime: ""
property string clockDate: ""
property bool showDate: false
implicitWidth: lbl.implicitWidth + 16
implicitHeight: 22
radius: 4
color: "#313244"
Text {
id: lbl
anchors.centerIn: parent
text: root.showDate ? root.clockDate : root.clockTime
color: "#cdd6f4"
font.pixelSize: 12
font.family: "monospace"
}
MouseArea {
anchors.fill: parent
onClicked: root.showDate = !root.showDate
}
}