alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
change waybar style
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
16d72a98
16d72a988c5376755b006dab308a963e60f96482
parent
a17d0da5
a17d0da56141cd8e14913022560b62f01e2dfe60
change-id
syvytnky
syvytnkyzrqpmvxwuloytwomrlqppztv
+28
-39
1 changed file
Expand all
Collapse all
Unified
Split
hosts
common
quickshell
shell.qml
+28
-39
hosts/common/quickshell/shell.qml
Reviewed
···
81
81
left: true
82
82
right: true
83
83
}
84
84
-
implicitHeight: 38
85
85
-
color: "transparent"
84
84
+
margins.top: 0
85
85
+
margins.bottom: 0
86
86
+
margins.left: 0
87
87
+
margins.right: 0
88
88
+
implicitHeight: 30
89
89
+
color: Qt.rgba(0.188, 0.204, 0.275, 0.85)
86
90
87
91
// CPU process
88
92
Process {
···
246
250
anchors.rightMargin: 12
247
251
spacing: 0
248
252
249
249
-
// Left section
250
250
-
RowLayout {
251
251
-
spacing: 0
252
252
-
253
253
-
Rectangle {
254
254
-
Layout.preferredHeight: 30
255
255
-
Layout.preferredWidth: clockText.implicitWidth + 24
256
256
-
radius: 15
257
257
-
color: root.colSurface0
258
258
-
259
259
-
Text {
260
260
-
id: clockText
261
261
-
anchors.centerIn: parent
262
262
-
color: root.colBlue
263
263
-
font { family: root.fontFamily; pixelSize: root.fontSize }
264
264
-
text: Qt.formatDateTime(new Date(), "dd-MM-yyyy HH:mm")
265
265
-
Timer {
266
266
-
interval: 1000
267
267
-
running: true
268
268
-
repeat: true
269
269
-
onTriggered: clockText.text = Qt.formatDateTime(new Date(), "dd-MM-yyyy HH:mm")
270
270
-
}
271
271
-
}
253
253
+
// Clock
254
254
+
Text {
255
255
+
id: clockText
256
256
+
color: root.colBlue
257
257
+
font { family: root.fontFamily; pixelSize: root.fontSize }
258
258
+
text: Qt.formatDateTime(new Date(), "dd-MM-yyyy HH:mm")
259
259
+
Timer {
260
260
+
interval: 1000
261
261
+
running: true
262
262
+
repeat: true
263
263
+
onTriggered: clockText.text = Qt.formatDateTime(new Date(), "dd-MM-yyyy HH:mm")
272
264
}
273
265
}
274
266
···
276
268
277
269
// Right section
278
270
RowLayout {
279
279
-
spacing: 8
280
280
-
281
281
-
Rectangle {
282
282
-
Layout.preferredHeight: 30
283
283
-
Layout.preferredWidth: rightRow.implicitWidth + 24
284
284
-
radius: 15
285
285
-
color: root.colSurface0
286
286
-
287
287
-
RowLayout {
288
288
-
id: rightRow
289
289
-
anchors.centerIn: parent
290
290
-
spacing: 12
271
271
+
spacing: 12
291
272
292
273
// Volume
293
274
Text {
294
275
color: root.colMaroon
295
276
font { family: root.fontFamily; pixelSize: root.fontSize }
296
277
text: root.volume + "% " + (root.volumeMuted ? root.iconVolMute : (root.volume > 50 ? root.iconVolHigh : root.iconVolLow))
278
278
+
MouseArea {
279
279
+
anchors.fill: parent
280
280
+
cursorShape: Qt.PointingHandCursor
281
281
+
onClicked: volClickProc.running = true
282
282
+
}
283
283
+
}
284
284
+
285
285
+
Process {
286
286
+
id: volClickProc
287
287
+
command: ["pavucontrol"]
297
288
}
298
289
299
290
Rectangle { width: 1; height: 16; color: root.colOverlay0 }
···
390
381
font { family: root.fontFamily; pixelSize: root.fontSize }
391
382
text: root.iconPower
392
383
}
393
393
-
}
394
394
-
}
395
384
}
396
385
}
397
386
}