Created
April 12, 2013 16:55
-
-
Save dhaley/5373450 to your computer and use it in GitHub Desktop.
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 'network-speed) | |
(setq network-speed-update-interval 5) | |
(setq network-speed-precision 1) | |
(setq network-speed-interface-list (if (string= (shell-command-to-string "ifconfig | grep en1") "") | |
'("en0") | |
'("en1"))) | |
(setq network-speed-format-string "%NI#%RB#%TB#%RX#%TX#%AX") | |
(network-speed-start) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment