ソースを参照

I don't need my computer to be belligerent towards me.
Change the low battery message.

Andrew Swistak 11 年 前
コミット
36413373d4
1 ファイル変更1 行追加1 行削除
  1. 1 1
      scripts/auto-hibernate.sh

+ 1 - 1
scripts/auto-hibernate.sh

@@ -4,7 +4,7 @@ stat=$(cat /sys/class/power_supply/BAT0/uevent | grep STATUS | cut -f2 -d=)
 batperc=$(cat /sys/class/power_supply/BAT0/uevent | grep CAPACITY | cut -f2 -d=)
 if [[ $stat -eq "Discharging" ]]; then
   export DISPLAY=:0.0
-  if [[ $batperc -le 7 ]]; then
+  if [[ $batperc -le 8 ]]; then
     # This will, and should, spam me when my battery gets low.
     notify-send 'Battery is low!' 'Save your work, idiot!' --icon=battery-low
   fi