HI,
First of all sorry if this is not the place to ask for help,
I did tried the irc channel but there is only 2 people connected.
I've read the documentation but my issue is not explained there (or at
least I didn't understood it).
I have 2 screens : one from my laptop, the seconde one a big ultrawide.
My idea is to work on the ultrawide screen and have only VIrtualbox or
Social app on the laptop screen.
When I switch between groups, there is always (in the bar) a blue selected
Group (which is i believe the main group I'm looking through the big
monitor and a grey selected group which I believe is the Laptop screen.
When I switch on my main screen from a "Blue" Group to a "Grey" group, both
groups are inverted between big monitor and laptop monitor. I Don"t want
this to happen.
Furthermore, I want to limit my laptop screen to only and only one group
"VBOX" in my instance.
here some of my config :
```
groups = [
Group("MAIN"),
Group("WWW"),
Group("CHAT"),
Group("VBOX"),
]
keys.extend([
Key([mod], "q", lazy.group["MAIN"].toscreen()),
Key([mod, "shift"], "q", lazy.window.togroup("MAIN",
switch_group=True)),
Key([mod], "s", lazy.group["WWW"].toscreen()),
Key([mod, "shift"], "s", lazy.window.togroup("WWW", switch_group=True)),
Key([mod], "d", lazy.group["CHAT"].toscreen()),
Key([mod, "shift"], "d", lazy.window.togroup("CHAT",
switch_group=True)),
Key([mod], "f", lazy.group["VBOX"].toscreen()),
Key([mod, "shift"], "f", lazy.window.togroup("VBOX",
switch_group=True)),
def init_widget_big():
res = [
widget.CurrentLayout(),
widget.GroupBox(visible_groups=["MAIN","WWW","CHAT"]),
widget.Prompt(),
widget.WindowName(),
widget.Chord(
chords_colors={
'launch': ("#ff0000", "#ffffff"),
},
name_transform=lambda name: name.upper(),
),
widget.TextBox("default config", name="default"),
widget.TextBox("Press <M-r> to spawn", foreground="#d75f5f"),
widget.Systray(),
widget.Clock(format='%Y-%m-%d %a %I:%M %p'),
widget.QuickExit(),
]
return res
def init_widget_small():
res = [
widget.CurrentLayout(),
widget.GroupBox(visible_groups=["VBOX"]),
widget.WindowName(),
widget.Chord(
chords_colors={
'launch': ("#ff0000", "#ffffff"),
},
name_transform=lambda name: name.upper(),
),
widget.TextBox("Press <M-r> to spawn", foreground="#d75f5f"),
widget.Systray(),
widget.Clock(format='%Y-%m-%d %a %I:%M %p'),
widget.QuickExit(),
]
return res
screens = [
# écran principal, 24 = taille de la bar
Screen(top=bar.Bar(init_widget_small(),24)),
# écran secondaire (WQHD)
Screen(top=bar.Bar(init_widget_big(),24))
```
--
You received this message because you are subscribed to the Google Groups
"qtile-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/qtile-dev/d07066f8-6b68-4b8f-975e-9cd85b77effen%40googlegroups.com.