From 228be776f1900ef813c3381015436589d239f984 Mon Sep 17 00:00:00 2001 From: joestandring Date: Tue, 28 May 2019 08:59:25 +0100 Subject: [PATCH] Added dwm_Battery to dwm_bar.sh. Oops! --- dwm_bar.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dwm_bar.sh b/dwm_bar.sh index 11dbfca..362bb30 100755 --- a/dwm_bar.sh +++ b/dwm_bar.sh @@ -21,6 +21,7 @@ export IDENTIFIER="unicode" . "$DIR/bar-functions/dwm_countdown.sh" . "$DIR/bar-functions/dwm_cmus.sh" . "$DIR/bar-functions/dwm_resources.sh" +. "$DIR/bar-functions/dwm_battery.sh" . "$DIR/bar-functions/dwm_mail.sh" . "$DIR/bar-functions/dwm_alsa.sh" . "$DIR/bar-functions/dwm_pulse.sh" @@ -33,6 +34,6 @@ export IDENTIFIER="unicode" # Update dwm status bar every second while true do - xsetroot -name "$(dwm_countdown)$(dwm_cmus)$(dwm_resources)$(dwm_mail)$(dwm_alsa)$(dwm_weather)$(dwm_vpn)$(dwm_network)$(dwm_keyboard)$(dwm_date)" + xsetroot -name "$(dwm_countdown)$(dwm_cmus)$(dwm_resources)$(dwm_battery)$(dwm_mail)$(dwm_alsa)$(dwm_weather)$(dwm_vpn)$(dwm_network)$(dwm_keyboard)$(dwm_date)" sleep 1 done