2019-10-24 15:50:31 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-10-24 13:46:11 +00:00
|
|
|
# What modules, in what order
|
2019-10-24 15:50:31 +00:00
|
|
|
MODULES="mpd weather volumebar wifi internet cpuload temperature date time"
|
2019-10-24 13:46:11 +00:00
|
|
|
|
|
|
|
# Modules that require an active internet connection
|
|
|
|
ONLINE_MODULES="weather internet"
|
|
|
|
|
|
|
|
# Delay between showing the status bar
|
|
|
|
DELAY="0.05"
|
|
|
|
|
|
|
|
# Where the custom modules are stored
|
|
|
|
CUSTOM_DIR="/home/$USER/.config/dwmbar/modules/custom/"
|
|
|
|
|
|
|
|
# Separator between modules
|
|
|
|
SEPARATOR=" | "
|
|
|
|
|
|
|
|
# Padding at the end and beggining of the status bar
|
2019-10-24 15:50:31 +00:00
|
|
|
RIGHT_PADDING="$USER@$HOSTNAME "
|
|
|
|
LEFT_PADDING=" "
|