From 91a5f9790cfd4a98ee940633694fb512ecf24942 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Thu, 6 Aug 2026 00:29:36 +0530 Subject: i3 > hyprland & x11 > wayland --- quickshell/items/Spin.qml | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 quickshell/items/Spin.qml (limited to 'quickshell/items/Spin.qml') diff --git a/quickshell/items/Spin.qml b/quickshell/items/Spin.qml deleted file mode 100644 index 72e6105..0000000 --- a/quickshell/items/Spin.qml +++ /dev/null @@ -1,45 +0,0 @@ -import QtQuick -import QtQuick.Layouts - -RowLayout { - spacing: 0 - Text { - text: " Spin:" - color: shellRoot.white - font { - family: shellRoot.fontFamily - pixelSize: shellRoot.fontSize - } - } - Text { - property var formatMode: "HH:mm:ss" - - id: clock - text: Qt.formatDateTime(new Date(), clock.formatMode) - color: shellRoot.purple - font { - family: shellRoot.fontFamily - pixelSize: shellRoot.fontSize - bold: true - } - - Timer { - interval: 1000 - running: true - repeat: true - onTriggered: clock.text = Qt.formatDateTime(new Date(), clock.formatMode) - } - - MouseArea { - anchors.fill: parent - onClicked: { - if (clock.formatMode === "HH:mm:ss") { - clock.formatMode = "yyyy/MM/dd, dddd" - } else { - clock.formatMode = "HH:mm:ss" - } - clock.text = Qt.formatDateTime(new Date(), clock.formatMode) - } - } - } -} -- cgit v1.2.3