|
From: | joakim |
Subject: | Re: Emacs as a desktop environment |
Date: | Sat, 28 May 2011 10:10:53 +0200 |
User-agent: | Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) |
Ted Zlatanov <address@hidden> writes: > On Thu, 26 May 2011 18:38:16 +0200 address@hidden wrote: > > j> When I want to know the time or network connectivity or something I > j> press F5 to bring up a temporary Emacs buffer with that > j> information. That way I can supposedly concentrate on work rather > j> than staring at the clock. > > Can you show the code you use for F5? (require 'battery) (require 'timeclock) (defun modeline-depopulator () (interactive) (message "%s\n%s\n%s\n%s" (format-time-string "%H:%M %Y-%m-%d" (current-time)) (battery-format battery-echo-area-format (funcall battery-status-function)) (timeclock-status-string) (shell-command-to-string "nmcli -p dev") )) (global-set-key [f5] 'modeline-depopulator) > > Ted > -- Joakim Verona
[Prev in Thread] | Current Thread | [Next in Thread] |