Switch to built-in wifi widget.

This commit is contained in:
Bartek Stalewski 2023-10-23 18:36:25 +02:00
parent 70de3ccd42
commit 17eebf0e42
2 changed files with 3 additions and 20 deletions

View file

@ -178,11 +178,11 @@ screens = [
update_interval=1, update_interval=1,
cmd="sb-volume", cmd="sb-volume",
), ),
widget.GenPollCommand( widget.Wlan(
background='#770000', background='#770000',
foreground='#feffff', foreground='#feffff',
update_interval=1, format='',
cmd="sb-network", disconnected_message="no wifi",
), ),
widget.GenPollCommand( widget.GenPollCommand(
update_interval=1, update_interval=1,

View file

@ -1,17 +0,0 @@
#!/bin/bash
for battery in /sys/class/power_supply/BAT?*; do
# If non-first battery, print a space separator.
[ -n "${capacity+x}" ] && printf " "
# Sets up the status and capacity
case "$(cat "$battery/status")" in
"Full") status="\uf102" ;;
"Discharging") status="\uf078" ;;
"Charging") status="\uf077" ;;
"Not charging") status="\uf444"; exit 0 ;;
"Unknown") status="\uf128" ;;
esac
capacity=$(cat "$battery/capacity")
# Will make a warn variable if discharging and low
[ "$capacity" -le 20 ] && printf "<span size='140%%' background='#770000' foreground='#ffffff'>${status} ${capacity}%%</span>" || printf "${status} ${capacity}%%"
done && exit 0