diff options
| author | Archie Hilton <archie.hilton1@gmail.com> | 2019-10-24 18:13:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-24 18:13:16 +0100 |
| commit | bc2772b8a27d3e43f9b6b0437650c8aadff2ac9e (patch) | |
| tree | 8cee3194f423775d380347c1af010dcde45c9bdb /config | |
| parent | 9969167112f99287ab9011f085bd6c43114a5b2d (diff) | |
| parent | 2d2c78a6d7472081fe9af181fd5e75fb7069d9e6 (diff) | |
Merge pull request #2 from thytom/sepconfig
Complete Restructure
Diffstat (limited to 'config')
| -rw-r--r-- | config | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +#!/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=" " |
