From f05174fcb8911988af411389ac3efa273ddf058a Mon Sep 17 00:00:00 2001 From: joestandring Date: Mon, 6 May 2019 21:21:03 +0000 Subject: [PATCH] Add dwm_keyboard to dwm_bar.sh --- dwm_bar.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dwm_bar.sh b/dwm_bar.sh index f2935c9..2df74b2 100755 --- a/dwm_bar.sh +++ b/dwm_bar.sh @@ -20,11 +20,12 @@ DIR=$(dirname "$LOC") . "$DIR/functions/dwm_mail.sh" . "$DIR/functions/dwm_alsa.sh" . "$DIR/functions/dwm_weather.sh" +. "$DIR/functions/dwm_keyboard.sh" . "$DIR/functions/dwm_date.sh" # Update dwm's status bar every second while true do - xsetroot -name "$(dwm_countdown)$(dwm_cmus)$(dwm_resources)$(dwm_mail)$(dwm_alsa)$(dwm_weather)$(dwm_date)" + xsetroot -name "$(dwm_countdown)$(dwm_cmus)$(dwm_resources)$(dwm_mail)$(dwm_alsa)$(dwm_weather)$(dwm_keyboard)$(dwm_date)" sleep 1 done