mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-13 23:51:34 +09:00
13 lines
265 B
Bash
Executable File
13 lines
265 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
STATUS=`cat /sys/class/power_supply/BAT0/status`
|
|
|
|
if [ $STATUS = "Charging" ]; then
|
|
echo "<fc=#f0c674><fn=1></fn></fc>"
|
|
elif [ $STATUS = "Discharging" ]; then
|
|
echo "<fc=#e86f69><fn=1></fn></fc>"
|
|
else
|
|
echo "<fn=1></fn>"
|
|
fi
|
|
|