You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
267 B
Bash

#!/bin/bash
while true; do
# Build the status bar
status_bar=""
status_bar+=" $USER"
status_bar+=" $(cat /sys/class/power_supply/BAT0/capacity)%"
status_bar+=" $( date +"%A %d/%m/%Y %R" )"
# Set the status bar
xsetroot -name "$status_bar"
sleep 1m
done &