mirror of
https://github.com/basecamp/omarchy.git
synced 2025-08-03 15:19:24 +00:00
Opacity for indicators of empty waybar workspaces (#444)
* Opacity for indicators of empty waybar workspaces Adds opacity to the workspace indicators on waybar, if the workspace is empty. Makes the indicator appear dimmer to make it easier to find empty workspaces. Purely cosmetic UI tweak. * Bump up opacity to be easier to read on light themes * Add migration * Apply grep to something! --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
This commit is contained in:
@ -26,6 +26,10 @@
|
||||
min-width: 9px;
|
||||
}
|
||||
|
||||
#workspaces button.empty {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
#tray,
|
||||
#cpu,
|
||||
#battery,
|
||||
|
6
migrations/1754133148.sh
Normal file
6
migrations/1754133148.sh
Normal file
@ -0,0 +1,6 @@
|
||||
echo "Update Waybar CSS to dim unused workspaces"
|
||||
|
||||
if ! grep -q "#workspaces button\.empty" ~/.config/waybar/style.css; then
|
||||
omarchy-refresh-config waybar/style.css
|
||||
pkill -SIGUSR2 waybar
|
||||
fi
|
Reference in New Issue
Block a user