dwmbar/config
Archie Hilton (thytom) 64300140a1 Restructuring
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.
2019-10-24 17:27:20 +01:00

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=" "