Ver Código Fonte

~/.xmonad: make firefox "official".

i've been using it for months now, so why not make it easier to spawn?
Lucas Stadler 11 anos atrás
pai
commit
9a190477b4
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      .xmonad/xmonad.hs

+ 2 - 2
.xmonad/xmonad.hs

@ -44,8 +44,8 @@ main = do
44 44
        layoutHook = avoidStruts $ smartBorders $ layoutHook defaultConfig,
45 45
        handleEventHook = fullscreenEventHook
46 46
     } `additionalKeys` [
47
        ((mod4Mask, xK_b), spawnHere "chromium --allow-file-access-from-files"),
48
        ((mod4Mask .|. shiftMask, xK_b), spawnHere "chromium --incognito --allow-file-access-from-files"),
47
        ((mod4Mask, xK_b), spawnHere "firefox"),
48
        ((mod4Mask .|. shiftMask, xK_b), spawnHere "firefox -private-window"),
49 49
50 50
        ((0, xF86XK_AudioMute), spawn "amixer set Master toggle"),
51 51
        ((0, xF86XK_AudioLowerVolume), spawn "amixer set Master 5%-"),