Created
September 26, 2014 16:29
-
-
Save killdash9/8ed18375617e3d2f9371 to your computer and use it in GitHub Desktop.
Keep emacs from zoning when under battery power
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'battery) | |
(defadvice zone (around zone-dont-run-on-battery activate) | |
"Only zone when under power" | |
(when (equal (cdr (assoc ?L (funcall battery-status-function))) "AC") | |
ad-do-it)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment