Last active
December 27, 2023 13:48
-
-
Save 0x3n0/4fa17c6ef69eb45019e4b89d814b05e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
battery_status=$(acpi | awk '{print $3}') | |
battery_percentage=$(acpi | awk '{print $4}' | sed 's/,//') | |
if [ "$battery_status" == "Discharging," ]; then | |
icon="π" | |
else | |
icon="π" | |
fi | |
echo "$icon $battery_percentage" | |
{" ο ", "$HOME/.config/dwm/dwmblocks/scripts/battery", 5, 0}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment