aboutsummaryrefslogtreecommitdiffstats
path: root/desktop/modules/status/StatusPage.qml
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-09-15 14:46:08 +0200
committerDanilo M. <danix@danix.xyz>2026-09-15 14:46:08 +0200
commit4e6e5c675b3cb1b28c757576dccdadd76ae07257 (patch)
treec94032d2c131ff5f991b3a73d3f359beddbbba75 /desktop/modules/status/StatusPage.qml
parentf0678f9dac3a8aeef8725c69331c02266e44134f (diff)
downloadquickshell-4e6e5c675b3cb1b28c757576dccdadd76ae07257.tar.gz
quickshell-4e6e5c675b3cb1b28c757576dccdadd76ae07257.zip
feat(status): add the snooze row
A switch and a free-text minutes field driving notify-snooze.sh. Snooze is a file the balloon shell reads, so the row only writes it; the switch follows the file, including a snooze that ends while the page is open.
Diffstat (limited to 'desktop/modules/status/StatusPage.qml')
-rw-r--r--desktop/modules/status/StatusPage.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/desktop/modules/status/StatusPage.qml b/desktop/modules/status/StatusPage.qml
index 850cc73..2fbdc9b 100644
--- a/desktop/modules/status/StatusPage.qml
+++ b/desktop/modules/status/StatusPage.qml
@@ -40,4 +40,14 @@ Column {
description: "Do not disturb, no screen lock, breaktimer paused."
value: Status.presentation
}
+
+ Rectangle {
+ width: page.width
+ height: 1
+ color: Qt.alpha(Theme.text, 0.08)
+ }
+
+ SnoozeRow {
+ width: page.width
+ }
}