From 8efc083e4d542669a84b946c3acc4bd2a5870d98 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Fri, 11 Sep 2026 10:53:49 +0200 Subject: feat: bring waybar's font in line with the rest of the desktop Waybar was already Catppuccin Macchiato with a lavender accent, using the same hex values as the rofi palette, so only the font needed changing: it asked for Commit Mono Nerd Font, a third family outside the Noto Sans and Inconsolata pair. Monospace is kept deliberately, since a status bar is dense and numeric and proportional text makes values jitter as they update. Also records that the CSS load order in waybar's own CLAUDE.md is stale. The modules-*.css and states.css files it documents are not imported by anything; style.css pulls in styles/main.css instead. One of the dead files holds a font-family declaration that looks authoritative but has no effect. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01G6aeE37K4GHBsaM51yLTTq --- templates/waybar/fonts.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 templates/waybar/fonts.css (limited to 'templates/waybar/fonts.css') diff --git a/templates/waybar/fonts.css b/templates/waybar/fonts.css new file mode 100644 index 0000000..ec4b024 --- /dev/null +++ b/templates/waybar/fonts.css @@ -0,0 +1,29 @@ +* { + font-family: "Inconsolata Nerd Font Mono"; + font-weight: bold; + font-size: 16px; +} + +#custom-user, +#window label, +#mpris, +tooltip label { + font-weight: normal; +} + +#workspaces button.active label, +#workspaces button.focused label, +#custom-distro { + font-size: 20px; +} + +#custom-power_menu { + font-size: 18px; +} + +#custom-left_div, +#custom-left_inv, +#custom-right_div, +#custom-right_inv { + font-size: 22px; +} -- cgit v1.2.3