dwmbar/config

21 lines
481 B
Text
Raw Normal View History

#!/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=" | "
# Padding at the end and beggining of the status bar
RIGHT_PADDING=" "
LEFT_PADDING=" "