
A quick google search did not yield any examples or explanations of how to use XMonad.Layout.Tabbed. I may have missed it, though, as I am tired. My current config can be found at: http://pastebin.com/uu6RjWbE I have a rudimentary dzen, I love the magnifier, and the scratchpad could come in handy. I would be very appreciative of anyone willing to point me in the right direction. Thank you. -- Alex R

-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 8/12/10 16:08 , Alex Rozenshteyn wrote:
A quick google search did not yield any examples or explanations of how to use XMonad.Layout.Tabbed. I may have missed it, though, as I am tired.
http://xmonad.org/xmonad-docs/xmonad-contrib/XMonad-Layout-Tabbed.html Short version: * simpleTabbed / simpleTabbedAlways uses defaults and adds a top tab bar * simpleTabbedBottom / simpleTabbedBottomAlways puts the bar at the bottom * `tabbed' in place of `simpleTabbed' lets you specify a Shrinker (how to modify the title text to fit in a tab) and a Theme (the colors used to draw the tab bar) * `addTabs' in place of `tabbed' is a layout modifier that attaches tabs to any other layout. `simpleTabbed' is `addTabs defaultShrinker defaultTheme Simplest', where Simplest is even plainer than Full - -- brandon s. allbery [linux,solaris,freebsd,perl] allbery@kf8nh.com system administrator [openafs,heimdal,too many hats] allbery@ece.cmu.edu electrical and computer engineering, carnegie mellon university KF8NH -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAkxkfB8ACgkQIn7hlCsL25XpvACgvX5dKZjGYJHM+m2jxPQze1mJ WeUAoLZ87J+eirrbQI+R856XAPY6W5SY =E2GK -----END PGP SIGNATURE-----

On 13 August 2010 08:56, Brandon S Allbery KF8NH
Short version:
* simpleTabbed / simpleTabbedAlways uses defaults and adds a top tab bar
* simpleTabbedBottom / simpleTabbedBottomAlways puts the bar at the bottom
The distinction between simpleTabbed[Bottom] and simpleTabbed[Bottom]Always is that in the non-always variants if there is only one window, then there is no tabbar, whereas the Always option will have one (but not if there are no windows, so the name isn't _quite_ correct). -- Ivan Lazar Miljenovic Ivan.Miljenovic@gmail.com IvanMiljenovic.wordpress.com

What if, for example, I want all windows of firefox on a specific workspace to tab together automatically, but no other tabs on that workspace? I guess I can see how to "add tabs to a layout" but I'm not sure what that actually means. On Fri, Aug 13, 2010 at 5:34 AM, Ivan Lazar Miljenovic < ivan.miljenovic@gmail.com> wrote:
On 13 August 2010 08:56, Brandon S Allbery KF8NH
wrote: Short version:
* simpleTabbed / simpleTabbedAlways uses defaults and adds a top tab bar
* simpleTabbedBottom / simpleTabbedBottomAlways puts the bar at the bottom
The distinction between simpleTabbed[Bottom] and simpleTabbed[Bottom]Always is that in the non-always variants if there is only one window, then there is no tabbar, whereas the Always option will have one (but not if there are no windows, so the name isn't _quite_ correct).
-- Ivan Lazar Miljenovic Ivan.Miljenovic@gmail.com IvanMiljenovic.wordpress.com _______________________________________________ xmonad mailing list xmonad@haskell.org http://www.haskell.org/mailman/listinfo/xmonad
-- Alex R

Alex Rozenshteyn
What if, for example, I want all windows of firefox on a specific workspace to tab together automatically, but no other tabs on that workspace?
There is no way of saying "tab all windows of a certain type" without using a sub-layout (such that Firefox windows take up one part of a screen, and other windows take up another part); tabbing is an all-or-nothing affair.
I guess I can see how to "add tabs to a layout" but I'm not sure what that actually means.
This means that you can add a tabbar to a Grid layout or something. -- Ivan Lazar Miljenovic Ivan.Miljenovic@gmail.com IvanMiljenovic.wordpress.com

Excerpts from Alex Rozenshteyn's message of Fri Aug 13 14:11:11 -0600 2010:
What if, for example, I want all windows of firefox on a specific workspace to tab together automatically, but no other tabs on that workspace?
I guess I can see how to "add tabs to a layout" but I'm not sure what that actually means.
Take a look at XMonad.Layout.ComboP -- as I recall that's one of the simplest to set up combination (sub layout) setups. It arranges windows using properties of the window similar to manageHooks. This seems like what you're asking for: e.g. className "Firefox" goes to left layout which is tabbed, other windows go to right layout which is Foo. -- wmw

Thanks, all. I'll look into it.
On Sat, Aug 14, 2010 at 4:32 AM, Wirt Wolff
What if, for example, I want all windows of firefox on a specific workspace to tab together automatically, but no other tabs on that workspace?
I guess I can see how to "add tabs to a layout" but I'm not sure what
Excerpts from Alex Rozenshteyn's message of Fri Aug 13 14:11:11 -0600 2010: that
actually means.
Take a look at XMonad.Layout.ComboP -- as I recall that's one of the simplest to set up combination (sub layout) setups. It arranges windows using properties of the window similar to manageHooks. This seems like what you're asking for: e.g. className "Firefox" goes to left layout which is tabbed, other windows go to right layout which is Foo. -- wmw
-- Alex R
participants (4)
-
Alex Rozenshteyn
-
Brandon S Allbery KF8NH
-
Ivan Lazar Miljenovic
-
Wirt Wolff