Skip to content

Commit

Permalink
xmonad: partial tabbed layout in IM workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
Dagefoerde committed May 16, 2019
1 parent 80cc1eb commit 6b5063c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xmonad/xmonad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,10 @@ myStartupHook = do


-- layouts
imLayout theme = avoidStruts $ reflectHoriz $ ( withIM (1%7) pidgin $ withIM (1%6) skype $ StackTile 1 (3/100) (1/2) ) ||| tabbed shrinkText theme
imLayout theme = avoidStruts $ reflectHoriz $ ( imColumns $ StackTile 1 (3/100) (1/2) ) ||| ( imColumns $ tabbed shrinkText theme )
where pidgin = And (ClassName "Pidgin") (Role "buddy_list")
skype = And (ClassName "Skype") $ And (Role "") (Not $ Title "Optionen")
imColumns n = withIM (1%7) pidgin $ withIM (1%6) skype $ n

generalLayout theme = avoidStruts $ (noFrillsDeco shrinkText theme $ Mirror tiled) ||| (noFrillsDeco shrinkText theme $ tiled) ||| tabbed shrinkText theme
where
Expand Down

0 comments on commit 6b5063c

Please sign in to comment.