Browse Source

~/.xmonad: add shortcut for spawning emacs in "writing" mode

e.g. start in `writeroom-mode`.
Lucas Stadler 11 years ago
parent
commit
a67ca2830e
1 changed files with 1 additions and 0 deletions
  1. 1 0
      .xmonad/xmonad.hs

+ 1 - 0
.xmonad/xmonad.hs

53
        ((mod4Mask, xK_b), spawnHere "firefox"),
53
        ((mod4Mask, xK_b), spawnHere "firefox"),
54
        ((mod4Mask .|. shiftMask, xK_b), spawnHere "firefox -private-window"),
54
        ((mod4Mask .|. shiftMask, xK_b), spawnHere "firefox -private-window"),
55
        ((mod4Mask, xK_e), spawnHere "emacs"),
55
        ((mod4Mask, xK_e), spawnHere "emacs"),
56
        ((mod4Mask .|. shiftMask, xK_e), spawnHere "emacs -f writeroom-mode"),
56
57
57
        ((0, xF86XK_AudioMute), spawn "amixer set Master toggle"),
58
        ((0, xF86XK_AudioMute), spawn "amixer set Master toggle"),
58
        ((0, xF86XK_AudioLowerVolume), spawn "amixer set Master 5%-"),
59
        ((0, xF86XK_AudioLowerVolume), spawn "amixer set Master 5%-"),