diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-16 14:09:33 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-16 14:09:33 +0200 |
| commit | 51a10dcf68852b278ff58b983b64132f357fe645 (patch) | |
| tree | 5f1eefffafb230d504a7f34384e3b1c6e1ef1339 /styles | |
| parent | d3cd9d79625cc1226fec747475887ce6f9cbc831 (diff) | |
| download | waybar-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.
Diffstat (limited to 'styles')
| -rw-r--r-- | styles/modules.css | 4 |
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"); } |
