Hi,

Am 05.08.2015 um 10:19 schrieb Fran:
[...]
> 1) menus - I'd like text rather than the awesome image to click on to open my 
> menu. There doesn't seem to be an easy way to do this? I'm guessing maybe I 
> could do it with a textbox widget but I'm completely out of ideas.

The default config has this to create the awesome icon:

mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon, menu =
mymainmenu })

Internally this "just" create an imagebox and attaches the menu to it. If you
want to use a textbox instead:

mylauncher = wibox.widget.textbox("Foo")
mylauncher:buttons(awful.button({}, 1, nil, function() mymainmenu:toggle() end))

> 2) tags - if you've got named tags rather than numbered how do you refer to 
> them? I've got different tags on each screen and I want to make certain that 
> Firefox only ever opens in the WWW tag on screen 1. Can I refer to this by 
> name? If not how do I know which number tag it is? 
[...]

Uhm. How do you create the tags? I assume awful.tag({ "first", "second", "third"
}), right? This creates the tags in order. So tag 1 will be "first", 2 will be
"second" etc.

If you use something more dynamic for managing tags, well, that code surely must
be involved somehow. What are you using?

Cheers,
Uli
-- 
Happiness can't be found -- it finds you.
 - Majic

-- 
To unsubscribe, send mail to [email protected].

Reply via email to