#!/usr/bin/env bash # Nerd Font glyphs, byte-for-byte identical to the original Waybar config. # Font: AnonymicePro Nerd Font # battery format-icons (low -> high) + charging export BAT_0="󰁺"; export BAT_1="󰁻"; export BAT_2="󰁾" export BAT_3="󰂀"; export BAT_4="󰁹"; export BAT_CHARGING="󰂄" # bluetooth export BT_ON="󰂯"; export BT_OFF="󰂲"; export BT_CONNECTED="󰂱" # network (wifi weak -> strong, ethernet, disconnected) export WIFI_1="󰤟"; export WIFI_2="󰤢"; export WIFI_3="󰤥" export WIFI_4="󰤨"; export ETHERNET=""; export NET_OFF="󰤭" # pulseaudio / volume (default set) + muted export VOL_0=""; export VOL_1=""; export VOL_2="" export VOL_3=""; export VOL_MUTE="" # backlight / brightness (dim, bright) export BL_LOW=""; export BL_HIGH="" # idle_inhibitor (activated=lock, deactivated=unlock) export IDLE_ON=""; export IDLE_OFF="" # misc export DISK=""; export MAIL=""; export SPOTIFY="" # weather (nf-weather-*, wttr.in weatherCode -> glyph) export WEA_SUNNY=""; export WEA_NIGHT="" export WEA_DAY_CLOUDY=""; export WEA_NIGHT_CLOUDY="" export WEA_CLOUDY=""; export WEA_FOG="" export WEA_SHOWERS=""; export WEA_RAIN="" export WEA_SNOW=""; export WEA_SLEET="" export WEA_THUNDER=""