1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #!/bin/bash
- interval=0
- cpu() {
- cpu_val=$(grep -o "^[^ ]*" /proc/loadavg)
- printf "^c#3b414d^ ^b#A3BE8C^ CPU"
- printf "^c#abb2bf^ ^b#414753^ $cpu_val"
- }
- update_icon() {
- printf "^c#94af7d^ "
- }
- # only for void users!
- xbps_updates() {
- updates=$(xbps-install -un | cut -d' ' -f2 | sort | uniq -c | xargs)
- if [ -z "$updates" ]; then
- printf "^c#94af7d^ Fully Updated"
- else
- printf "^c#94af7d^ $updates""s"
- fi
- }
- # battery
- batt() {
- printf "^c#81A1C1^ "
- printf "^c#81A1C1^ $(acpi | sed "s/,//g" | awk '{if ($3 == "Discharging"){print $4; exit} else {print $4""}}' | tr -d "\n")"
- }
- brightness() {
- backlight() {
- backlight="$(xbacklight -get)"
- echo -e "$backlight"
- }
- printf "^c#BF616A^ "
- printf "^c#BF616A^%.0f\n" $(backlight)
- }
- mem() {
- printf "^c#7797b7^^b#2E3440^ "
- printf "^c#7797b7^ $(free -h | awk '/^Mem/ { print $3 }' | sed s/i//g)"
- }
- wlan() {
- case "$(cat /sys/class/net/w*/operstate 2>/dev/null)" in
- up) printf "^c#3b414d^ ^b#7681c5^ ^d^%s" " ^c#828dd1^Connected" ;;
- down) printf "^c#3b414d^ ^b#7681c5^ ^d^%s" " ^c#828dd1^Disconnected" ;;
- esac
- }
- clock() {
- printf "^c#2E3440^ ^b#828dd1^ "
- printf "^c#2E3440^^b#6c77bb^ $(date '+%a, %I:%M %p') "
- }
- while true; do
- # remove these 2 lines if u dont use void! or adjust the xbps-updates to get n.o of updates (according your distro ofc)
- [ $interval == 0 ] || [ $(($interval % 3600)) == 0 ] && updates=$(xbps-updates)
- interval=$((interval + 1))
- sleep 1 && xsetroot -name "$(update_icon) $updates $(batt) $(brightness) $(cpu) $(mem) $(wlan) $(clock)"
- done
|