diff options
author | Archie Hilton (thytom) <archie.hilton1@gmail.com> | 2019-10-24 16:50:31 +0100 |
---|---|---|
committer | Archie Hilton (thytom) <archie.hilton1@gmail.com> | 2019-10-24 16:50:31 +0100 |
commit | b4fb27fd60a64c608319c97826ec2f09f5c26732 (patch) | |
tree | fbc22a4ad1f4c484fe1824e5c74fce26e97f5723 /config | |
parent | 4d1c3a91f7811732af65a7a0ac7d477f2a2a497b (diff) |
Just use the source command, and added left padding.
Diffstat (limited to 'config')
-rw-r--r-- | config | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,9 @@ +#!/bin/bash + +MODULES_DIR="/home/$USER/.config/dwmbar/modules/" + # What modules, in what order -MODULES="mpd weather volumebar wifi internet cpuload temperature" +MODULES="mpd weather volumebar wifi internet cpuload temperature date time" # Modules that require an active internet connection ONLINE_MODULES="weather internet" @@ -14,4 +18,5 @@ CUSTOM_DIR="/home/$USER/.config/dwmbar/modules/custom/" SEPARATOR=" | " # Padding at the end and beggining of the status bar -PADDING="$USER@$HOSTNAME " +RIGHT_PADDING="$USER@$HOSTNAME " +LEFT_PADDING=" " |