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:

  1. create new tag same name in other screen
  2. move clients in new tag
  3. delete old tag in current monitor
  4. 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

Popular posts from this blog

How to provide Authorization & Authentication using Asp.net, C#? -

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

How to use Authorization & Authentication in Asp.net, C#? -