mirror of
https://github.com/basecamp/omarchy.git
synced 2025-08-03 15:19:24 +00:00

* 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>
52 lines
653 B
CSS
52 lines
653 B
CSS
@import "../omarchy/current/theme/waybar.css";
|
|
|
|
* {
|
|
background-color: @background;
|
|
color: @foreground;
|
|
|
|
border: none;
|
|
border-radius: 0;
|
|
min-height: 0;
|
|
font-family: CaskaydiaMono Nerd Font Propo;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.modules-left {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.modules-right {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
#workspaces button {
|
|
all: initial;
|
|
padding: 0 6px;
|
|
margin: 0 1.5px;
|
|
min-width: 9px;
|
|
}
|
|
|
|
#workspaces button.empty {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
#tray,
|
|
#cpu,
|
|
#battery,
|
|
#network,
|
|
#bluetooth,
|
|
#pulseaudio,
|
|
#clock,
|
|
#custom-power-menu {
|
|
min-width: 12px;
|
|
margin: 0 7.5px;
|
|
}
|
|
|
|
#custom-expand-icon {
|
|
margin-right: 12px;
|
|
}
|
|
|
|
tooltip {
|
|
padding: 2px;
|
|
}
|