Sfoglia il codice sorgente

~/.xmonad: make firefox "official".

i've been using it for months now, so why not make it easier to spawn?
Lucas Stadler 11 anni fa
parent
commit
9a190477b4
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      .xmonad/xmonad.hs

+ 2 - 2
.xmonad/xmonad.hs

44
        layoutHook = avoidStruts $ smartBorders $ layoutHook defaultConfig,
44
        layoutHook = avoidStruts $ smartBorders $ layoutHook defaultConfig,
45
        handleEventHook = fullscreenEventHook
45
        handleEventHook = fullscreenEventHook
46
     } `additionalKeys` [
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
        ((0, xF86XK_AudioMute), spawn "amixer set Master toggle"),
50
        ((0, xF86XK_AudioMute), spawn "amixer set Master toggle"),
51
        ((0, xF86XK_AudioLowerVolume), spawn "amixer set Master 5%-"),
51
        ((0, xF86XK_AudioLowerVolume), spawn "amixer set Master 5%-"),