Hi,
1. The wallpapers you have to add to both screens in configuration, now 
you've got only on second screen.
2. To focus mouse on active screen set: 
follow_mouse_focus = True
3. When you use function lazy.group[].toscreen give a flag toggle=False
e.g. lazy.group[i.name].toscreen(toggle=False)

Simon


sobota, 20 marca 2021 o 10:36:25 UTC+1 [email protected] napisał(a):

> Hey,
> I am stuck on multiscreen setup I am using the default config with this 
> screen Setup
>
> ```
> screens = [
>     Screen(
>         bottom=bar.Bar(
>             [
>                 widget.CurrentLayout(),
>                 widget.GroupBox(),
>                 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(),
>             ],
>             24,
>         ),
>     ),
>     Screen(
>         top=bar.Bar(
>             [
>                 widget.CurrentLayout(),
>                 widget.GroupBox(),
>                 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(),
>             ],
>             24,
>         ),
>         wallpaper='~/wallpapers/wallpaper1.jpeg',
>         wallpaper_mode='fill',
>     ),
> ]
> ```
>
> my .xinitrc
>
> ```
> source /home/USER/sources/env/bin/activate
> xset r rate 250 50
> xrandr --output eDP-1 --primary --mode 1920x1080 --output HDMI-2 --mode 
> 2560x1440 --above eDP-1
> exec /home/USER/sources/env/bin/qtile start
> ````
>
> so far. I see both screens, both bars and workspaces. But somehow those 
> screens are not handled seperately. When I start a app on screen 1 
> workspace 2. And switch workspaces to workspace 3 and so on while still 
> focused with mouse on screen 1 it displays same app on screen 2.
> Also When I switch workspaces the switch is shown on every screen. Same 
> for wallpaper. If I add normal wallpaper it is shown up to 50 % on screen 1 
> while the other part is displayed on screen 2.
> What do I miss here. Same xrandr command worked like a charme on awesome.
> I want two screens with their own workspace settings.
>
> thanks in advance
>
> Karsten
>
>

-- 
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/3507da4b-3e70-46be-91ca-cb8dfb816e5dn%40googlegroups.com.

Reply via email to