aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-09-16 14:09:33 +0200
committerDanilo M. <danix@danix.xyz>2026-09-16 14:09:33 +0200
commit51a10dcf68852b278ff58b983b64132f357fe645 (patch)
tree5f1eefffafb230d504a7f34384e3b1c6e1ef1339
parentd3cd9d79625cc1226fec747475887ce6f9cbc831 (diff)
downloadwaybar-theme-udt-51a10dcf68852b278ff58b983b64132f357fe645.tar.gz
waybar-theme-udt-51a10dcf68852b278ff58b983b64132f357fe645.zip
fix(workspaces): swap the desktop 2 and 3 icons
Desktop 2 is the editor and desktop 3 the terminal; the nth-child mapping had them the other way round. The appearance drawer's window-switcher now draws the same icons and was corrected to match.
-rw-r--r--styles/modules.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/styles/modules.css b/styles/modules.css
index 9131752..4daff23 100644
--- a/styles/modules.css
+++ b/styles/modules.css
@@ -105,8 +105,8 @@
/* The eight. Generic names, so the bar does not lie when the application on a
* workspace changes. */
#workspaces button:nth-child(1) { background-image: url("@ICONS@/categories/22/web-browser.svg"); }
-#workspaces button:nth-child(2) { background-image: url("@ICONS@/categories/22/utilities-terminal.svg"); }
-#workspaces button:nth-child(3) { background-image: url("@ICONS@/categories/22/text-editor.svg"); }
+#workspaces button:nth-child(2) { background-image: url("@ICONS@/categories/22/text-editor.svg"); }
+#workspaces button:nth-child(3) { background-image: url("@ICONS@/categories/22/utilities-terminal.svg"); }
#workspaces button:nth-child(4) { background-image: url("@ICONS@/devices/22/network-server.svg"); }
#workspaces button:nth-child(5) { background-image: url("@ICONS@/actions/22/document-edit.svg"); }
#workspaces button:nth-child(6) { background-image: url("@ICONS@/categories/22/applications-graphics.svg"); }