Those should be fairly "easy" to do with some custom functions. How familiar are you with Python?
- to link groups for specific screen for example 123 are for first monitor > only and 456 for second one only Would those groups be hard set in the config, or are you looking for them to be flexible? - shortcut to send the active window to the second display in displayed > group ( this could be a work around for the first one) This would be much simpler to implement as a custom Python function. This could be done similarly to my MutableScratch system <https://github.com/jrwrigh/dotfiles2.0/blob/46818a2c69cd5f845e5244b9102cddd0bebaae28/.config/qtile/functions.py#L170-L250> (operates more similarly to i3's scratch window system. I've been meaning to release it as a separate extension package, but haven't had the time...) and my move_next_screen <https://github.com/jrwrigh/dotfiles2.0/blob/46818a2c69cd5f845e5244b9102cddd0bebaae28/.config/qtile/functions.py#L107-L121> function. The MutableScratch sends windows to/from an empty-named group, while `move_next_screen` moves groups between screens. On Thu, Oct 21, 2021 at 3:06 AM moo52 <[email protected]> wrote: > hey every one > i was trying to find how qtile work with multi screen and there is no such > thing in decumentation except of setting screen for bar > working with two monitor is a big deal for me > i need two setup two things > - to link groups for specific screen for example 123 are for first monitor > only and 456 for second one only > - shortcut to send the active window to the second display in displayed > group ( this could be a work around for the first one) > > -- > 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/8b1459b5-ad92-4654-a7ae-91c207e734fdn%40googlegroups.com > <https://groups.google.com/d/msgid/qtile-dev/8b1459b5-ad92-4654-a7ae-91c207e734fdn%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- 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/CAHErDQiM9EusEP7zqC2%3DoLEdoMZrTH8tV27%2B8r3os%3DuBQyPd3g%40mail.gmail.com.
