diff options
-rwxr-xr-x | env/.local/bin/notify_low_battery.sh | 4 | ||||
-rwxr-xr-x | env/.local/bin/screenshot.sh | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/env/.local/bin/notify_low_battery.sh b/env/.local/bin/notify_low_battery.sh new file mode 100755 index 0000000..e0e6f84 --- /dev/null +++ b/env/.local/bin/notify_low_battery.sh @@ -0,0 +1,4 @@ +#!/bin/sh +CAPACITY=$(cat /sys/class/power_supply/BAT0/capacity) +[ $CAPACITY -lt 20 ] && notify-send --urgency=critical "Low battery" "Less then $CAPACITY% remaining.\n Charge your laptop." + diff --git a/env/.local/bin/screenshot.sh b/env/.local/bin/screenshot.sh index 66d9c5c..5acf77b 100755 --- a/env/.local/bin/screenshot.sh +++ b/env/.local/bin/screenshot.sh @@ -5,7 +5,5 @@ SCREENSHOTS_DIR=$HOME/Pictures/Screenshots FILENAME=$SCREENSHOTS_DIR/$(date +%F_%H-%M-%S).png -echo "$@" - mkdir -p $SCREENSHOTS_DIR import $@ $FILENAME && xclip -selection clipboard -target image/png -i < $FILENAME |