We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18f387f commit 96b8317Copy full SHA for 96b8317
dots/config/quickshell/Widgets/WindowTitleWidget.qml
@@ -15,7 +15,7 @@ Column {
15
width: Math.min(implicitWidth, 650)
16
elide: Text.ElideRight
17
verticalAlignment: Text.AlignVCenter
18
- text: HyprlandService.activeWindow.title
+ text: HyprlandService.activeWindow.title || "Desktop"
19
color: colors.on_surface
20
font.bold: true
21
}
@@ -24,7 +24,7 @@ Column {
24
25
26
27
- text: HyprlandService.activeWindow.class
+ text: HyprlandService.activeWindow.class || "No programs running"
28
color: colors.outline
29
30
0 commit comments