Skip to content

Instantly share code, notes, and snippets.

@Vulcalien
Created April 14, 2022 09:29
Show Gist options
  • Select an option

  • Save Vulcalien/2ca66ec4e5f33c42c9a53da9a0263b81 to your computer and use it in GitHub Desktop.

Select an option

Save Vulcalien/2ca66ec4e5f33c42c9a53da9a0263b81 to your computer and use it in GitHub Desktop.
Check your battery level on the terminal
#!/bin/sh
charge_now=$(cat /sys/class/power_supply/BAT0/charge_now)
charge_full=$(cat /sys/class/power_supply/BAT0/charge_full)
echo $((100 * $charge_now / $charge_full))%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment