/* Append to ~/.config/waybar/style.css. */ /* The monospace font makes the nbsp bar cells line up as rectangles. */ /* The lock class tints the label blue while a 1-hour lock is active. */ #custom-ocd { font-family: monospace; padding: 0 6px; min-width: 0; } #custom-ocd.ocd-locked { color: #5aa6e0; } /* Dark popover background for the ocd tooltip window. Waybar scopes tooltip styles globally: this rule applies to every tooltip in the bar, not just ours (Waybar wiki / PR #4930). It uses @background / @foreground, the same dark theme color the rest of the bar already uses (imported by omarchy's theme file), so the change matches the bar instead of introducing a new color. Also make the tooltip font monospace so the block-char bars line up. */ tooltip { background-color: @background; color: @foreground; padding: 6px 8px; border-radius: 6px; font-family: monospace; }