users/ryan/modules/sketchybar/bar-config/icons.sh
b43dfa30df8d9ac27491b6df6ec6b84f9afc8761
· 1.3 KB · 35 lines
raw
| 1 | #!/usr/bin/env bash |
| 2 | # Nerd Font glyphs, byte-for-byte identical to the original Waybar config. |
| 3 | # Font: AnonymicePro Nerd Font |
| 4 | |
| 5 | # battery format-icons (low -> high) + charging |
| 6 | export BAT_0=""; export BAT_1=""; export BAT_2="" |
| 7 | export BAT_3=""; export BAT_4=""; export BAT_CHARGING="" |
| 8 | |
| 9 | # bluetooth |
| 10 | export BT_ON=""; export BT_OFF=""; export BT_CONNECTED="" |
| 11 | |
| 12 | # network (wifi weak -> strong, ethernet, disconnected) |
| 13 | export WIFI_1=""; export WIFI_2=""; export WIFI_3="" |
| 14 | export WIFI_4=""; export ETHERNET=""; export NET_OFF="" |
| 15 | |
| 16 | # pulseaudio / volume (default set) + muted |
| 17 | export VOL_0=""; export VOL_1=""; export VOL_2="" |
| 18 | export VOL_3=""; export VOL_MUTE="" |
| 19 | |
| 20 | # backlight / brightness (dim, bright) |
| 21 | export BL_LOW=""; export BL_HIGH="" |
| 22 | |
| 23 | # idle_inhibitor (activated=lock, deactivated=unlock) |
| 24 | export IDLE_ON=""; export IDLE_OFF="" |
| 25 | |
| 26 | # misc |
| 27 | export DISK=""; export MAIL=""; export SPOTIFY="" |
| 28 | |
| 29 | # weather (nf-weather-*, wttr.in weatherCode -> glyph) |
| 30 | export WEA_SUNNY=""; export WEA_NIGHT="" |
| 31 | export WEA_DAY_CLOUDY=""; export WEA_NIGHT_CLOUDY="" |
| 32 | export WEA_CLOUDY=""; export WEA_FOG="" |
| 33 | export WEA_SHOWERS=""; export WEA_RAIN="" |
| 34 | export WEA_SNOW=""; export WEA_SLEET="" |
| 35 | export WEA_THUNDER="" |