awesome WM how to change tag of screen -
i change tag assign 1 screen , move other screen clients inside it. following api https://awesome.naquadah.org/doc/api/modules/awful.tag.html see can move tag, seems has stay in same screen... wait see how it:
- create new tag same name in other screen
- move clients in new tag
- delete old tag in current monitor
- switch focus ...
seems horrible solution... workaround?
https://awesome.naquadah.org/doc/api/modules/awful.client.html#movetoscreen move window screen. next step clients in specific tag. can https://awesome.naquadah.org/doc/api/modules/tag.html#clients.
so, sum up, should this:
function move_tag_to_screen(tag,screen) local clients = tag.clients() client in clients client.movetoscreen(screen) end end handn't tied though.
deleting , creating tags should trivial @ point.
this how move client different tag https://awesome.naquadah.org/doc/api/modules/awful.client.html#movetotag
Comments
Post a Comment