remove cruft, update xmonad
This commit is contained in:
parent
03153e438e
commit
dbc041abbe
4 changed files with 16 additions and 10 deletions
2
.gvimrc
2
.gvimrc
|
|
@ -1,7 +1,7 @@
|
|||
winsize 115 45
|
||||
"set expandtab
|
||||
"set guifont=DejaVu\ Sans\ Mono:h15.00
|
||||
set guifont=Inconsolata\ 14
|
||||
set guifont=Inconsolata\ 12
|
||||
set guioptions-=L
|
||||
set guioptions-=r
|
||||
|
||||
|
|
|
|||
12
.vimrc
12
.vimrc
|
|
@ -138,12 +138,12 @@ inoremap <C-e> <C-O>$
|
|||
imap <C-c> <Esc>
|
||||
|
||||
|
||||
nmap <silent> <C-j> :FocusNextWindow<CR>
|
||||
nmap <silent> <C-k> :FocusPrevWindow<CR>
|
||||
nmap <silent> <C-m> :FocusMasterWindow<CR>
|
||||
nmap <silent> <C-Enter> :SwapWithMasterWindow<CR>
|
||||
nmap <silent> <C-Down> :SwapWithNextWindow<CR>
|
||||
nmap <silent> <C-Up> :SwapWithPrevWindow<CR>
|
||||
"nmap <silent> <C-j> :FocusNextWindow<CR>
|
||||
"nmap <silent> <C-k> :FocusPrevWindow<CR>
|
||||
"nmap <silent> <C-m> :FocusMasterWindow<CR>
|
||||
"nmap <silent> <C-Enter> :SwapWithMasterWindow<CR>
|
||||
"nmap <silent> <C-Down> :SwapWithNextWindow<CR>
|
||||
"nmap <silent> <C-Up> :SwapWithPrevWindow<CR>
|
||||
|
||||
set laststatus=2
|
||||
set statusline=%t "tail of the filename
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ import XMonad.Hooks.DynamicLog as DL
|
|||
import XMonad.Hooks.EwmhDesktops
|
||||
import XMonad.Hooks.ManageDocks
|
||||
import XMonad.Hooks.ManageHelpers
|
||||
import XMonad.ManageHook
|
||||
|
||||
import qualified XMonad.StackSet as W
|
||||
|
||||
|
|
@ -22,9 +23,14 @@ import XMonad.Util.XSelection
|
|||
import qualified XMonad.Util.EZConfig as EZ
|
||||
import qualified Data.Map as M
|
||||
|
||||
|
||||
myManageHook :: [ManageHook]
|
||||
myManageHook =
|
||||
[ resource =? "Synapse" --> doIgnore ]
|
||||
main = xmonad gnomeConfig {
|
||||
borderWidth = 4,
|
||||
focusedBorderColor = "#00BFFF"
|
||||
focusedBorderColor = "#00BFFF",
|
||||
manageHook = manageHook gnomeConfig <+> composeAll myManageHook
|
||||
}
|
||||
|
||||
{-
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
#!/usr/bin/perl
|
||||
if ($#ARGV == 0) {
|
||||
$ARGV[1] = "michener\@csua.berkeley.edu";
|
||||
$ARGV[1] = "barakmich@gmail.com";
|
||||
}
|
||||
print <<FOO;
|
||||
print <<FOO;
|
||||
EHLO localhost
|
||||
MAIL FROM: rootcow\@csua.berkeley.edu
|
||||
RCPT TO: $ARGV[1]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue