diff options
| author | jao <jao@gnu.org> | 2016-07-26 03:53:24 +0200 | 
|---|---|---|
| committer | jao <jao@gnu.org> | 2016-07-26 03:53:24 +0200 | 
| commit | c98752cad2343932d42d2fef2229581f0c266800 (patch) | |
| tree | 67f5331d7906987cd1ed20da4ce5179afa44f94d /src/Plugins/Monitors | |
| parent | e9ce98d934861a96f76f673b88fda55f4ceeb900 (diff) | |
| download | xmobar-c98752cad2343932d42d2fef2229581f0c266800.tar.gz xmobar-c98752cad2343932d42d2fef2229581f0c266800.tar.bz2  | |
Sensible thresholds for high/low battery power consumption
Fixes #265.
Diffstat (limited to 'src/Plugins/Monitors')
| -rw-r--r-- | src/Plugins/Monitors/Batt.hs | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Plugins/Monitors/Batt.hs b/src/Plugins/Monitors/Batt.hs index 2ceac09..81c9aee 100644 --- a/src/Plugins/Monitors/Batt.hs +++ b/src/Plugins/Monitors/Batt.hs @@ -51,8 +51,8 @@ defaultOpts = BattOpts    , lowWColor = Nothing    , mediumWColor = Nothing    , highWColor = Nothing -  , lowThreshold = -12 -  , highThreshold = -10 +  , lowThreshold = 10 +  , highThreshold = 12    , onlineFile = "AC/online"    , scale = 1e6    , onIconPattern = Nothing  | 
