Dotfiles-dwm/dwmbar/config
2024-06-02 14:02:06 +03:00

21 lines
480 B
Bash

#!/bin/bash
# What modules, in what order
MODULES="voidupdates kernel ram cpuload cputemp battery time date"
# 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=" "