I am looking to replace the tag list in awesome WM with a simple text box that only displays the name of the current tag. I have tried to create a textbox that contains the following code:

mytagbox = widget({ type = "textbox" })
mytagbox.text = awful.tag.selected(s).getproperty("name")

But this does not work and reverts awesome to its default config. What is the correct code I need to put in to make this possible? I'm also using Shifty. Thanks

link|improve this question

0% accept rate
feedback

migrated from superuser.com Jan 22 at 21:16

This question came from our site for computer enthusiasts and power users.

1 Answer

You were close to the correct way:

screen[1]:add_signal("tag::history::update", function()
       mytagbox.text = awful.tag.selected(1).name
end)

So mytagbox.text will be changing on each tags switching.

link|improve this answer
Thanks, I have put that code in my rc.lua and it half works - it displays the name of the first tag opened on login, but when I change tags after that, it doesn't update. I have written a function that returns tagname, but where should I make a call to that function in rc.lua so that it changes with the tags? Cheers – semiserious Jan 23 at 0:15
You should just put mytagbox.text = awful.tag.selected(1).name into tag::history::update signal of screen[1]. I've updated example in my answer above. – Taras Jan 23 at 1:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.