From 4239f88c306c7ee36cca612997b2d3f19285a3ef Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Tue, 19 Oct 2021 21:10:48 +0200 Subject: [PATCH] Stuff --- src/scripts/autostart.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/scripts/autostart.sh b/src/scripts/autostart.sh index 9111bb8..cc13326 100755 --- a/src/scripts/autostart.sh +++ b/src/scripts/autostart.sh @@ -1,6 +1,11 @@ #!/bin/bash while true; do - xsetroot -name "$(date +"%H:%M:%S (%A) %Y-%m-%d")" + CMUS="$(cmus.sh)" + NET="up: 100b/s | down: 999kb/s" + VOL=$(pavolume.sh) + TIME="{$(date +"%H:%M:%S, %A, %Y-%m-%d")} " + + xsetroot -name " $CMUS $NET Vol: $VOL $TIME" sleep 1s -done +done &