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>
This commit is contained in:
parent
1ea820f238
commit
17d50aba45
@ -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
Normal file
1
.gitignore
vendored
Normal file
@ -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")
|
||||
|
Reference in New Issue
Block a user