You are not logged in.

#1 2021-03-15 02:48:07

salonkommunist
Member
From: Germany
Registered: 2020-02-18
Posts: 36

Xmonad: Move tabbed container between workspaces

Hi everybody,

I am relatively new to Xmonad and have been unable to find a solution to this problem so far. Is there a way to move a tabbed sublayout group of windows between workspaces just the way one would move a single 'standard' window? In my current setup, only the tabbed element that currently has focus will be sent to the target workspace as a single window.

This is my layout section; please let me know if more details of my xmonad.hs are required:

myLayout = avoidStruts
         $ noBorders
         $ windowNavigation
         $ B.boringWindows
         $ toggleLayouts ( renamed [Replace "full"]
                         $ Full
                         )
         $ renamed [CutWordsLeft 5]
         $ noFrillsDeco shrinkText myDecoTheme
         $ addTabs shrinkText myTabTheme
         $ subLayout [] (Simplest)
         $ MAG.magnifierOff
         $ smartSpacingWithEdge 7
         (   ( renamed [Replace "m/s"]
             $ ResizableTall 1 (3/100) (1/2) []
             )
         ||| ( renamed [Replace "BSP"]
             $ emptyBSP
             )
         ||| ( renamed [Replace "3col"]
             $ ThreeColMid 1 (3/100) (1/2)
             )
         ||| ( renamed [Replace "mirror m/s"]
             $ Mirror (ResizableTall 1 (3/100) (1/2) [])
             )
         ||| ( renamed [Replace "grid"]
             $ Grid
             )
         )

Offline

Board footer

Powered by FluxBB