gdritter repos dotfiles / 3646759
Merge Samothes changes Getty Ritter 6 years ago
5 changed file(s) with 7 addition(s) and 8 deletion(s). Collapse all Expand all
77 URxvt.transparent: true
88 URxvt.shading: 10
99 URxvt.scrollBar: false
10 URxvt*font: xft:Inconsolata:style=Medium:size=14, xft:Symbola:style=Regular:size=14
10 URxvt*font: xft:Fira Mono:style=Medium:size=14, xft:Symbola:style=Regular:size=14
1111 URxvt*.foreground: white
1212 URxvt*.background: black
1313 URxvt.print-pipe: "cat >/dev/null"
2020 Emacs.verticalScrollBars: off
2121
2222 ! Xft options
23 Xft.dpi: 100
23 Xft.dpi: 162
2424 Xft.autohint: 0
2525 Xft.lcdfilter: lcddefault
2626 Xft.hintstyle: hintfull
11 ;; basic appearance bits
2
3 (load "ProofGeneral/generic/proof-site")
42
53 (setq initial-scratch-message "")
64 (setq inhibit-startup-message t)
501499 (if (getenv "NARROW")
502500 (bzg-big-fringe-mode 1))
503501 (put 'narrow-to-region 'disabled nil)
502
504503 (custom-set-variables
505504 ;; custom-set-variables was added by Custom.
506505 ;; If you edit it by hand, you could mess it up, so be careful.
(No changes)
5555 keys :: XM.XConfig XM.Layout -> M.Map (XM.ButtonMask, XM.KeySym) (XM.X ())
5656 keys (XM.XConfig {XM.modMask = mdMask}) = M.fromList
5757 [ ((mdMask, XM.xK_p), XM.spawn "dmenu_run")
58 , ((mdMask, XM.xK_o), XM.spawn "dmesktop")
5859 , ((mdMask, XM.xK_period), XM.spawn "ibus engine xkb:us::eng")
5960 , ((mdMask, XM.xK_u), XM.spawn "amixer -q sset Master 3%+")
6061 , ((mdMask, XM.xK_d), XM.spawn "amixer -q sset Master 3%-")
139140 void (Sys.createProcess (Sys.proc "sh" ["/home/gdritter/.xm-init"]))
140141
141142 -- Run an xmobar instance
142 xmproc <- Run.spawnPipe "xmobar /home/gdritter/.xmobarrc"
143 xmproc <- Run.spawnPipe "/home/gdritter/.cabal/bin/xmobar /home/gdritter/.xmobarrc"
143144 -- Run a graphical-only runit instance.
144145 -- XXX: kill this when xmonad dies somehow!
145146 void (Run.spawnPipe "runsvdir /home/gdritter/.run/service")
1010 , Run Swap [] 10
1111 , Run Date "%a %b %_d %l:%M" "date" 10
1212 , Run StdinReader
13 , Run Com "/home/gdritter/bin/check-battery" [] "battery" 50
14 , Run Com "/home/gdritter/bin/bat-color" [] "col" 50
1513 ]
1614 , sepChar = "%"
1715 , alignSep = "}{"
18 , template = "%StdinReader% }{ <fc=%col%>%cpu% | %memory% | %date% | %battery%</fc>"
16 , template = "%StdinReader% }{ %cpu% | %memory% | %date%"
17 , font = "xft:Fira Mono:bold:size=14"
1918 }