waybar: restore network icons with monochrome Material Design glyphs

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 <noreply@anthropic.com>
This commit is contained in:
ediblerope 2026-05-12 12:06:38 +01:00
parent 5caf3d733f
commit ca34fd61c8

View file

@ -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";
};