Skip to content

Instantly share code, notes, and snippets.

@killdash9
Created September 26, 2014 16:29
Show Gist options
  • Save killdash9/8ed18375617e3d2f9371 to your computer and use it in GitHub Desktop.
Save killdash9/8ed18375617e3d2f9371 to your computer and use it in GitHub Desktop.
Keep emacs from zoning when under battery power
(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