diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-16 14:09:25 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-16 14:09:25 +0200 |
| commit | ff611cc8ce63483effbb9d569d45cb990e0fcc8c (patch) | |
| tree | 8e98fecd02b1956d9c9ac8d92b890089d3fdaa35 /window-switcher | |
| parent | 6d3747ec57db0bd23e6971dab2949381f3f195b5 (diff) | |
| download | quickshell-ff611cc8ce63483effbb9d569d45cb990e0fcc8c.tar.gz quickshell-ff611cc8ce63483effbb9d569d45cb990e0fcc8c.zip | |
fix(window-switcher): swap the desktop 2 and 3 icons
Desktop 2 is the editor and desktop 3 the terminal; the map had them the
other way round, matching waybar's stylesheet before it was corrected.
Diffstat (limited to 'window-switcher')
| -rw-r--r-- | window-switcher/Windows.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/window-switcher/Windows.qml b/window-switcher/Windows.qml index fb582ad..411c921 100644 --- a/window-switcher/Windows.qml +++ b/window-switcher/Windows.qml @@ -73,8 +73,8 @@ Singleton { // has no icon and the card falls back to its number. readonly property var workspaceIcons: ({ 1: "web-browser", - 2: "utilities-terminal", - 3: "text-editor", + 2: "text-editor", + 3: "utilities-terminal", 4: "network-server", 5: "document-edit", 6: "applications-graphics", |
