Various minimal changes

- have zathura open one page per row by default
- add .gitignore to ignore *~ files
- add xmonad key binding for opening tab-less instance of
  urxvtc (Mod+Control+Enter, the old xterm key binding)
- move xmonad key binding for xterm to Mod+Backspace

Signed-off-by: Collin J. Doering <rekahsoft@gmail.com>
这个提交包含在:
Collin J. Doering 2014-04-03 19:38:48 -04:00 提交者 Collin J. Doering
父节点 1ea820f238
当前提交 17d50aba45
共有 4 个文件被更改,包括 7 次插入5 次删除

查看文件

@ -115,7 +115,7 @@ free_space=1
horizontal_split=0
vertical_equal=1
left_panel_size=70
left_panel_size=59
horizontal_equal=1
top_panel_size=27

查看文件

@ -1,5 +1,3 @@
set pages-per-row 2
map [normal] 1 set "pages-per-row 1"
map [normal] 2 set "pages-per-row 2"
map [normal] 3 set "pages-per-row 3"

1
.gitignore vendored 普通文件
查看文件

@ -0,0 +1 @@
*~

查看文件

@ -230,9 +230,12 @@ myGenericKeys =
-- Enable switching of workspaces using gridselect
, ((modm .|. shiftMask, xK_g), gridselectWorkspace defaultGSConfig W.view)
-- Launch tab-less urxvtc
, ((modm .|. controlMask, xK_Return), spawn $ myTerminal ++ " -pe -tabbedex")
-- Launch a backup terminal
, ((modm .|. controlMask, xK_Return), spawn "xterm")
, ((modm, xK_BackSpace), spawn "xterm")
-- Launch firefox (now conkeror)
, ((modm .|. controlMask, xK_f), spawn "conkeror")