From 63fe336895a3ed07b735446fcac131c63a2a2e96 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 8 Feb 2022 20:58:49 -0300 Subject: [PATCH] Add battery_button.sh --- blocks.def/battery_button.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 blocks.def/battery_button.sh diff --git a/blocks.def/battery_button.sh b/blocks.def/battery_button.sh new file mode 100755 index 0000000..e38cadd --- /dev/null +++ b/blocks.def/battery_button.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +case "$1" in + 1) SUDO_ASKPASS=$HOME/.local/bin/dpass sudo -A "$TERMINAL" -e "powertop" ;; + 2) SUDO_ASKPASS=$HOME/.local/bin/dpass sudo -A powertop --html=$HOME/.cache/powerreport.html && xdg-open $HOME/.cache/powerreport.html ;; +esac