From ca34fd61c8e7bf5c451c3ba7f587e3a1f49e8aba Mon Sep 17 00:00:00 2001 From: ediblerope Date: Tue, 12 May 2026 12:06:38 +0100 Subject: [PATCH] waybar: restore network icons with monochrome Material Design glyphs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Nerd Font icons in the earlier waybar config got stripped through a round-trip — the wifi format was rendering as two spaces and the others as empty. Reinstate them with the cleaner mdi-wifi / mdi-ethernet / mdi-wifi-off codepoints (U+F05A9 / F0200 / F05AA) which render single-colour and read more as outline glyphs than the busier FontAwesome originals. Co-Authored-By: Claude Opus 4.7 --- settings/hyprland.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 7ee4cfc..dea8835 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -324,9 +324,9 @@ }; network = { - format-wifi = " {essid}"; - format-ethernet = ""; - format-disconnected = ""; + format-wifi = "󰖩 {essid}"; + format-ethernet = "󰈀"; + format-disconnected = "󰖪"; tooltip-format = "{ifname}"; on-click = "nm-connection-editor"; };