diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/BarConfig.qml | 1 | ||||
| -rw-r--r-- | config/Config.qml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/config/BarConfig.qml b/config/BarConfig.qml index 36a5f78..62d6b17 100644 --- a/config/BarConfig.qml +++ b/config/BarConfig.qml @@ -71,6 +71,7 @@ JsonObject { property bool occupiedBg: false property bool showWindows: true property bool showWindowsOnSpecialWorkspaces: showWindows + property int maxWindowIcons: 0 // 0 = unlimited property bool activeTrail: false property bool perMonitorWorkspaces: true property string label: " " // if empty, will show workspace name's first letter diff --git a/config/Config.qml b/config/Config.qml index d6f5d19..eaeafb7 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -209,6 +209,7 @@ Singleton { occupiedBg: bar.workspaces.occupiedBg, showWindows: bar.workspaces.showWindows, showWindowsOnSpecialWorkspaces: bar.workspaces.showWindowsOnSpecialWorkspaces, + maxWindowIcons: bar.workspaces.maxWindowIcons, activeTrail: bar.workspaces.activeTrail, perMonitorWorkspaces: bar.workspaces.perMonitorWorkspaces, label: bar.workspaces.label, |