2019-10-24 15:50:31 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-10-24 13:46:11 +00:00
|
|
|
# What modules, in what order
|
2019-11-06 15:07:14 +00:00
|
|
|
MODULES="weather volumebar wifi internet cpuload cputemp 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=" | "
|
|
|
|
|
2023-01-02 18:59:13 +00:00
|
|
|
# Padding at the end and beginning of the status bar
|
2019-11-06 15:26:27 +00:00
|
|
|
RIGHT_PADDING=" "
|
|
|
|
LEFT_PADDING=" "
|