We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f452958 commit af5eddbCopy full SHA for af5eddb
home/services/quickshell/bar/Clock.qml
@@ -1,4 +1,5 @@
1
import QtQuick
2
+import QtQuick.Layouts
3
import Quickshell.Widgets
4
import "../components"
5
import "../utils/."
@@ -9,7 +10,16 @@ WrapperMouseArea {
9
10
Config.showSidebar = !Config.showSidebar;
11
}
12
- Text {
13
- text: Qt.formatDateTime(Utils.clock.date, "ddd MMM d hh:mm")
+ RowLayout {
14
+ spacing: Config.padding * 2
15
+
16
+ Text {
17
+ text: Qt.formatDateTime(Utils.clock.date, "ddd MMM d hh:mm")
18
+ }
19
20
+ MaterialIcon {
21
+ text: "notifications" + (NotificationState.allNotifs.length > 0 ? "_unread" : "")
22
+ font.pointSize: Config.iconSize
23
24
25
0 commit comments