mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
FAQ: Add more entries for common questions
Data mined from the IRC logs by checking for a "?" from users who had not spoken for >= 5 hours.
This commit is contained in:
parent
65ec764416
commit
9ef84550f9
1 changed files with 21 additions and 0 deletions
|
@ -381,6 +381,27 @@ multi-screen support to existing configs, see how
|
|||
`awful.screen.connect_for_each_screen` is used in the new `rc.lua` or rebuild
|
||||
your config on a newer revision of `rc.lua`.
|
||||
|
||||
### Can I have a client or the system tray on multiple screens at once?
|
||||
|
||||
No. This is an X11 limitation and there is no sane way to work around it.
|
||||
|
||||
### Can a client be tagged on different screens at once?
|
||||
|
||||
While it is not impossible to partially implement support for this, many
|
||||
Awesome components frequently query the client's screen.
|
||||
Since a client can only be in one screen at once, this will cause side effects.
|
||||
So by default Awesome avoids, but does not prevent, having clients in multiple
|
||||
tags that are not on the same screen.
|
||||
|
||||
### Can a tag be on multiple screens?
|
||||
|
||||
No. See the previous two questions. However, it is possible to swap tags across
|
||||
screens using `t:swap(t2)` (assuming `t` and `t2` are valid `tag` objects).
|
||||
|
||||
This can be used to emulate a tag being on multiple screens. Note that this will
|
||||
break support for multi-tagged clients. For this reason it isn't implemented by
|
||||
default.
|
||||
|
||||
## Development
|
||||
|
||||
### How to report bugs?
|
||||
|
|
Loading…
Reference in a new issue