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 &