blob: 39de9cdb63a3fbb614474b699c68043278641fdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/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=""
|