my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
939 B

3 years ago
  1. # Battery Plugin
  2. This plugin adds some functions you can use to display battery information in your custom theme.
  3. To use, add `battery` to the list of plugins in your `.zshrc` file:
  4. `plugins=(... battery)`
  5. Then, add the `battery_pct_prompt` function to your custom theme. For example:
  6. ```zsh
  7. RPROMPT='$(battery_pct_prompt) ...'
  8. ```
  9. ## Requirements
  10. - On Linux, you must have the `acpi` or `acpitool` commands installed on your operating system.
  11. On Debian/Ubuntu, you can do that with `sudo apt install acpi` or `sudo apt install acpitool`.
  12. - On Android (via [Termux](https://play.google.com/store/apps/details?id=com.termux)), you must have:
  13. 1. The `Termux:API` addon app installed:
  14. [Google Play](https://play.google.com/store/apps/details?id=com.termux.api) | [F-Droid](https://f-droid.org/packages/com.termux.api/)
  15. 2. The `termux-api` package installed within termux:
  16. ```sh
  17. pkg install termux-api
  18. ```