diff options
| author | Craig Jennings <c@cjennings.net> | 2026-01-25 15:01:33 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-01-25 15:01:33 -0600 |
| commit | 4c8c3e4e75612293807110459be33312febad4d1 (patch) | |
| tree | 820a5e768699322cb79b5ceaa935520474950b9c | |
| parent | b4f4032e449492a446b29237feb656a94520a72e (diff) | |
fix(waybar): use text labels instead of nerd font icons
Replace nerd font icons with text labels (CPU, MEM, DSK) since
Berkeley Mono isn't a nerd font. Update font-family to prefer
JetBrainsMono Nerd Font for future icon support.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
| -rw-r--r-- | dotfiles/hyprland/.config/waybar/config | 6 | ||||
| -rw-r--r-- | dotfiles/hyprland/.config/waybar/style.css | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/dotfiles/hyprland/.config/waybar/config b/dotfiles/hyprland/.config/waybar/config index 1a867f4..5481a86 100644 --- a/dotfiles/hyprland/.config/waybar/config +++ b/dotfiles/hyprland/.config/waybar/config @@ -36,17 +36,17 @@ "cpu": { "interval": 10, - "format": " {}%" + "format": "CPU {}%" }, "memory": { "interval": 30, - "format": " {}%" + "format": "MEM {}%" }, "disk": { "interval": 30, - "format": " {percentage_used}%", + "format": "DSK {percentage_used}%", "path": "/" }, diff --git a/dotfiles/hyprland/.config/waybar/style.css b/dotfiles/hyprland/.config/waybar/style.css index 2b68c10..f458c82 100644 --- a/dotfiles/hyprland/.config/waybar/style.css +++ b/dotfiles/hyprland/.config/waybar/style.css @@ -6,7 +6,7 @@ border-radius: 0; font-size: 14px; min-height: 0; - font-family: "Berkeley Mono", "FiraCode Nerd Font", monospace; + font-family: "JetBrainsMono Nerd Font", "Berkeley Mono", monospace; } window#waybar { |
