all repos — zenUtils @ main

misc utilities for computing zen

batAlarm.sh (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh

# Just a background script to tell you when your battery's low if you don't
# have a panel.
# Derek Stevens <nilix@nilfm.cc>
# MIT License

flag1=0
flag2=0

while true; do
  charge=$(cat /sys/class/power_supply/BAT0/capacity)
  if [ $charge -lt 11 ]; then
    if [ $flag1 -eq 0 ]; then
      flag1=1
      notify-send -t 10000 battery [${charge}%]
    fi
  elif [ $charge -lt 21 ]; then
    if [ $flag2 -eq 0 ]; then
      flag2=1
      notify-send -t 10000 battery [${charge}%]
    fi
  fi

  if [ $charge -gt 20 ]; then
    flag2=0
  fi
  if [ $charge -gt 10 ]; then
    flag1=0
  fi
  
  sleep 30
done