From 4c8c3e4e75612293807110459be33312febad4d1 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 25 Jan 2026 15:01:33 -0600 Subject: 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 --- dotfiles/hyprland/.config/waybar/config | 6 +++--- dotfiles/hyprland/.config/waybar/style.css | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'dotfiles/hyprland/.config/waybar') 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 { -- cgit v1.2.3