me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

change waybar style

author
Sean Aye
date (Mar 22, 2026, 8:03 PM -0400) commit 16d72a98 parent a17d0da5 change-id syvytnky
+28 -39
+28 -39
hosts/common/quickshell/shell.qml
··· 81 81 left: true 82 82 right: true 83 83 } 84 - implicitHeight: 38 85 - color: "transparent" 84 + margins.top: 0 85 + margins.bottom: 0 86 + margins.left: 0 87 + margins.right: 0 88 + implicitHeight: 30 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 - // Left section 250 - RowLayout { 251 - spacing: 0 252 - 253 - Rectangle { 254 - Layout.preferredHeight: 30 255 - Layout.preferredWidth: clockText.implicitWidth + 24 256 - radius: 15 257 - color: root.colSurface0 258 - 259 - Text { 260 - id: clockText 261 - anchors.centerIn: parent 262 - color: root.colBlue 263 - font { family: root.fontFamily; pixelSize: root.fontSize } 264 - text: Qt.formatDateTime(new Date(), "dd-MM-yyyy HH:mm") 265 - Timer { 266 - interval: 1000 267 - running: true 268 - repeat: true 269 - onTriggered: clockText.text = Qt.formatDateTime(new Date(), "dd-MM-yyyy HH:mm") 270 - } 271 - } 253 + // Clock 254 + Text { 255 + id: clockText 256 + color: root.colBlue 257 + font { family: root.fontFamily; pixelSize: root.fontSize } 258 + text: Qt.formatDateTime(new Date(), "dd-MM-yyyy HH:mm") 259 + Timer { 260 + interval: 1000 261 + running: true 262 + repeat: true 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 - spacing: 8 280 - 281 - Rectangle { 282 - Layout.preferredHeight: 30 283 - Layout.preferredWidth: rightRow.implicitWidth + 24 284 - radius: 15 285 - color: root.colSurface0 286 - 287 - RowLayout { 288 - id: rightRow 289 - anchors.centerIn: parent 290 - spacing: 12 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 + MouseArea { 279 + anchors.fill: parent 280 + cursorShape: Qt.PointingHandCursor 281 + onClicked: volClickProc.running = true 282 + } 283 + } 284 + 285 + Process { 286 + id: volClickProc 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 - } 394 - } 395 384 } 396 385 } 397 386 }