blob: 118d85ac5a1d38ac01f87578b0b6b26e06b1b51f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
# What modules, in what order
MODULES="weather volumebar wifi internet cpuload cputemp 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 beginning of the status bar
RIGHT_PADDING=" "
LEFT_PADDING=" "
|