diff options
| author | sweenu <contact@sweenu.xyz> | 2025-09-01 13:47:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-01 21:47:10 +1000 |
| commit | 1d5360d3f33f5148387e89970a9cc94f63b65e40 (patch) | |
| tree | 73823061596fd25bd5f60a883a8b2477a7918114 /config | |
| parent | bar/workspaces: different `showWindows` option for special ws (#544) (diff) | |
| download | caelestia-shell-1d5360d3f33f5148387e89970a9cc94f63b65e40.tar.gz caelestia-shell-1d5360d3f33f5148387e89970a9cc94f63b65e40.tar.bz2 caelestia-shell-1d5360d3f33f5148387e89970a9cc94f63b65e40.zip | |
bar/workspaces: add option for ws name capitalisation (#543)
Diffstat (limited to 'config')
| -rw-r--r-- | config/BarConfig.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/BarConfig.qml b/config/BarConfig.qml index b8d83e6..1f9db70 100644 --- a/config/BarConfig.qml +++ b/config/BarConfig.qml @@ -61,9 +61,10 @@ JsonObject { property bool showWindowsOnSpecialWorkspaces: showWindows property bool activeTrail: false property bool perMonitorWorkspaces: true - property string label: " " + property string label: " " // if empty, will show workspace name's first letter property string occupiedLabel: "" property string activeLabel: "" + property string capitalisation: "preserve" // upper, lower, or preserve - relevant only if label is empty } component Tray: JsonObject { |