Re: change gnome-sound-applet icon in awesome

2012-08-27 Thread Mohan Sundaram
pyLemon gmail.com> writes: > > 于Wed 18 Jul 2012 12:45:41 AM CST,Vincent Bernat写到: > > > > #v+ > > gtk-icon-theme-name="yourtheme" > > gtk-fallback-icon-theme="yourtheme" > > #v- > > > > Another solution would be to uninstall those icons. > > thanks vincent, your solution is awesome, and I have

RE: change gnome-sound-applet icon in awesome

2012-07-17 Thread David Sorkovsky
button({ }, 4, function () myvolume.up() end), button({ }, 5, function () myvolume.down() end), button({ }, 1, function () myvolume.toggle() end)

Re: change gnome-sound-applet icon in awesome

2012-07-17 Thread pyLemon
于Wed 18 Jul 2012 12:45:41 AM CST,Vincent Bernat写到: ❦ 17 juillet 2012 18:07 CEST, Bryan Gardiner : I use the gnome-sound-applet to control sound in my awesome settings, and it has a full black icon. However, my top panel is also black, so I can't see the icon. Is it possible to change the ic

Re: change gnome-sound-applet icon in awesome

2012-07-17 Thread Vincent Bernat
❦ 17 juillet 2012 18:07 CEST, Bryan Gardiner  : >> I use the gnome-sound-applet to control sound in my awesome settings, >> and it has a full black icon. However, my top panel is also black, so >> I can't see the icon. >> >> Is it possible to change the icon? Thanks! >> >> >> best regards, >>

Re: change gnome-sound-applet icon in awesome

2012-07-17 Thread Bryan Gardiner
On Tue, 17 Jul 2012 15:37:02 +0800 pyLemon wrote: > hi: > > I use the gnome-sound-applet to control sound in my awesome settings, > and it has a full black icon. However, my top panel is also black, so > I can't see the icon. > > Is it possible to change the icon? Thanks! > > > best regards,

Re: change gnome-sound-applet icon in awesome

2012-07-17 Thread Vincent Bernat
❦ 17 juillet 2012 09:37 CEST, pyLemon  : > I use the gnome-sound-applet to control sound in my awesome settings, > and it has a full black icon. However, my top panel is also black, so > I can't see the icon. > > Is it possible to change the icon? Thanks! While I think you should use a widget fo

Re: change gnome-sound-applet icon in awesome

2012-07-17 Thread pyLemon
thanks for your quick reply Abhijeet, and thanks David Gomes. I have google that page. haha, And I have seen someone has successful changed that icon. but I don't know how.. this is my volume applet config -- Volume widget volumecfg = {} volumecfg.cardid = 0 volumecfg.channel = "Master" volu

Re: change gnome-sound-applet icon in awesome

2012-07-17 Thread Abhijeet R
Well, I actually don't have a solution but you can use vicious to create a widget like this. -- {{{ Volume level volicon = widget({ type = "imagebox" }) volicon.image = image(awful.util.getdir("config") .. "/icons/vol.png") volwidget = widget({ type = "textbox" }) vicious.cache(vicious.widgets.

Re: change gnome-sound-applet icon in awesome

2012-07-17 Thread David Gomes
I've had the same problem: http://askubuntu.com/questions/105614/change-gnome-sound-applet-icon I couldn't really get an answer, not sure if it's possible. I just ended up using a textbox to display my sound, but I'd love to find a way around this too. On Tue, Jul 17, 2012 at 8:37 AM, pyLemon wr