diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-30 13:49:05 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-30 13:49:05 +1000 |
| commit | e8fe4ef673ebb3bc89f192ad5dba0b6d54149f34 (patch) | |
| tree | e82697134093d7b025c3257a3c6aa49abce483b7 /config | |
| parent | bar: custom workspace labels (diff) | |
| download | caelestia-shell-e8fe4ef673ebb3bc89f192ad5dba0b6d54149f34.tar.gz caelestia-shell-e8fe4ef673ebb3bc89f192ad5dba0b6d54149f34.tar.bz2 caelestia-shell-e8fe4ef673ebb3bc89f192ad5dba0b6d54149f34.zip | |
feat: bar workspaces show windows
Better hyprland clients (update existing instead of resetting every time)
Option for ws trail
Custom label for occupied ws as well
Diffstat (limited to 'config')
| -rw-r--r-- | config/BarConfig.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/BarConfig.qml b/config/BarConfig.qml index fe0dab3..e5c0711 100644 --- a/config/BarConfig.qml +++ b/config/BarConfig.qml @@ -26,7 +26,10 @@ Singleton { readonly property int shown: 10 readonly property string style: "" readonly property bool occupiedBg: true - readonly property string label: " " + readonly property bool showWindows: true + readonly property bool activeTrail: !showWindows // Doesn't work well with variable sized workspaces + readonly property string label: " " + readonly property string occupiedLabel: " " readonly property string activeLabel: " " } |