mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
64300140a1
Moved bar.sh to /usr/share/dwmbar. Modules are now only in /usr/share/dwmbar. Custom modules folder is now in .config/dwmbar. This will allow for paralellised modules down the line.
20 lines
505 B
Bash
20 lines
505 B
Bash
#!/bin/bash
|
|
|
|
# What modules, in what order
|
|
MODULES="mpd weather volumebar wifi internet cpuload temperature date time"
|
|
|
|
# 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="$USER@$HOSTNAME "
|
|
LEFT_PADDING=" "
|