do shift some apps to the first desktop
This commit is contained in:
parent
c72940044e
commit
45b9fc9d3e
1 changed files with 8 additions and 1 deletions
|
|
@ -54,7 +54,14 @@ main = xmonad $ gnomeConfig
|
||||||
, borderWidth = 3
|
, borderWidth = 3
|
||||||
-- Switch workspaces with default first azerty row instead of plain numbers
|
-- Switch workspaces with default first azerty row instead of plain numbers
|
||||||
, keys = \c -> bepoKeys c `M.union` keys gnomeConfig c
|
, keys = \c -> bepoKeys c `M.union` keys gnomeConfig c
|
||||||
, manageHook = manageHook gnomeConfig <+> manageScratchPad <+> composeAll [ className =? "Gimp" --> doFloat ]
|
, manageHook = manageHook gnomeConfig <+> manageScratchPad <+> composeAll
|
||||||
|
[
|
||||||
|
className =? "Thunderbird" --> doShift "1",
|
||||||
|
className =? "Xchat" --> doShift "1",
|
||||||
|
className =? "Pidgin" --> doShift "1",
|
||||||
|
className =? "Fdclock" --> doShift "1",
|
||||||
|
className =? "Gimp" --> doFloat
|
||||||
|
]
|
||||||
|
|
||||||
-- add a fullscreen tabbed layout that does not avoid covering
|
-- add a fullscreen tabbed layout that does not avoid covering
|
||||||
-- up desktop panels before the desktop layouts
|
-- up desktop panels before the desktop layouts
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue