summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-01-12 12:47:22 -0500
committerFreya Murphy <freya@freyacat.org>2026-01-12 12:47:22 -0500
commit1a4cb7a87a6bccd0d9a2e769139cd86f5de53e8a (patch)
tree9169031f3b18be961f07b99276d1b3e59d0b52f0 /config
parentremove default paths (diff)
downloadcaelestia-shell-1a4cb7a87a6bccd0d9a2e769139cd86f5de53e8a.tar.gz
caelestia-shell-1a4cb7a87a6bccd0d9a2e769139cd86f5de53e8a.tar.bz2
caelestia-shell-1a4cb7a87a6bccd0d9a2e769139cd86f5de53e8a.zip
refactor workspace functionality (real per monitor workspaces)
Diffstat (limited to 'config')
-rw-r--r--config/BarConfig.qml11
-rw-r--r--config/Config.qml11
2 files changed, 0 insertions, 22 deletions
diff --git a/config/BarConfig.qml b/config/BarConfig.qml
index a0ce4be..00df1ea 100644
--- a/config/BarConfig.qml
+++ b/config/BarConfig.qml
@@ -66,18 +66,7 @@ JsonObject {
}
component Workspaces: JsonObject {
- property int shown: 5
- property bool activeIndicator: true
- property bool occupiedBg: false
- property bool showWindows: true
- property bool showWindowsOnSpecialWorkspaces: showWindows
- property bool activeTrail: false
property bool perMonitorWorkspaces: true
- 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
- property list<var> specialWorkspaceIcons: []
}
component ActiveWindow: JsonObject {
diff --git a/config/Config.qml b/config/Config.qml
index c49240e..7a5c04f 100644
--- a/config/Config.qml
+++ b/config/Config.qml
@@ -166,18 +166,7 @@ Singleton {
statusIcons: bar.popouts.statusIcons
},
workspaces: {
- shown: bar.workspaces.shown,
- activeIndicator: bar.workspaces.activeIndicator,
- occupiedBg: bar.workspaces.occupiedBg,
- showWindows: bar.workspaces.showWindows,
- showWindowsOnSpecialWorkspaces: bar.workspaces.showWindowsOnSpecialWorkspaces,
- activeTrail: bar.workspaces.activeTrail,
perMonitorWorkspaces: bar.workspaces.perMonitorWorkspaces,
- label: bar.workspaces.label,
- occupiedLabel: bar.workspaces.occupiedLabel,
- activeLabel: bar.workspaces.activeLabel,
- capitalisation: bar.workspaces.capitalisation,
- specialWorkspaceIcons: bar.workspaces.specialWorkspaceIcons
},
tray: {
background: bar.tray.background,