Collin Doering
0b231dbbcc
.Xdefaults: * added a key/val pair to set emacs font to terminus 12 point * did some rearranging.. .zshrc: (same as .bashrc) .bashrc: * added a alias to transmission-remote as it is now my primary torrent client * added ~/.cabal/bin to #PATH .conkerorrc: * set default homepage to duckduckgo .emacs: * set emacs font to terminus 12 point in the pursuit of a consistent UI * disabled pretty lambdas; neeeds to be re-enabled seeing as the issue noted in emacs24 was unrelated and solved by setting the font (both in ~/.emacs and ~/.Xdefaults. Though pretty lambdas can only be used for lisp-like languages. * added clojure-mode-hook to the list of mode-hooks called 'code-modes' * noticed paredit's binding C-j interfered with eval-print-last-sexp in the scratch buffer. To rectify this added a global binding. Need to make this a local binding *TODO* * set eshell-visual-commands to a list of commands for eshell to execute in a ansi term * created a eshell/ff function for looking up files using eshell's build in globbing. Issue is that it does not take into consideration relative paths *TODO* .screenrc: changed default binding prefix C-a to C-t .xmobarrc: added modules Weather, Uptime and Swap .xmonad/xmonad.hs: * added the WindowBringer module * made dmenu fit more naturally into the UI theme * added toggle dullscreen support (Mod+Control+Space) Signed-off-by: Collin Doering <rekahsoft@gmail.com>
40 lines
2.3 KiB
Plaintext
40 lines
2.3 KiB
Plaintext
-- (C) Copyright Collin Doering @!@YEAR@!@
|
|
--
|
|
-- This program is free software: you can redistribute it and/or modify
|
|
-- it under the terms of the GNU General Public License as published by
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
|
-- (at your option) any later version.
|
|
--
|
|
-- This program is distributed in the hope that it will be useful,
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
-- GNU General Public License for more details.
|
|
--
|
|
-- You should have received a copy of the GNU General Public License
|
|
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-- File: .xmobarrc
|
|
-- Author: Collin J. Doering <rekahsoft@gmail.com>
|
|
-- Date: Jan 11, 2012
|
|
|
|
Config { font = "-*-terminus-*-*-*-*-35-*-*-*-*-*-*-u"
|
|
, bgColor = "#000000"
|
|
, fgColor = "#00FFFF"
|
|
, position = TopW L 96
|
|
, lowerOnStart = True
|
|
, commands = [ Run Network "eth0" ["-L","0","-H","32","-l","green","--normal","orange","--high","red"] 40
|
|
-- , Run Com "/home/collin/.bin/vol.sh" [] "vol" 15
|
|
, Run MultiCpu ["-t","Cpu <total> | cpu0: <total0> | cpu1: <total1> | cpu2: <total2> | cpu3: <total3>","-L","3","-H","50","--high","#f0c040"] 10
|
|
, Run Memory ["-t","Mem: <usedratio>%","-l","green","--normal","orange","--high","red"] 40
|
|
, Run Swap ["-t","Swap: <usedratio>%","-l","green","--normal","orange","--high","red"] 60
|
|
, Run Date "%a %b %_d %l:%M %p" "date" 60
|
|
, Run Uptime ["-t","Up: <days>d <hours>h <minutes>m","-l","green","--normal","orange","--high","red"] 60
|
|
, Run Weather "CYKF" ["-t","Waterloo: <tempC>C"] 36000
|
|
, Run CpuFreq ["-t","Freq: <cpu0> | <cpu1> GHz","-L","0","-H","2","-l","green","-n","orange","-h","red"] 50
|
|
, Run StdinReader
|
|
]
|
|
, sepChar = "%"
|
|
, alignSep = "}{"
|
|
, template = " %StdinReader% }{ %multicpu% %memory% <fc=#0033FF>|</fc> %swap% <fc=#0033FF>|</fc> %eth0% <fc=#0033FF>|</fc> %uptime% <fc=#0033FF>|</fc> %CYKF% <fc=#0033FF>|</fc> %date% <fc=#0033FF>|</fc> "
|
|
}
|