Hello everybody,

i'm having a strange issue with the vicious (2.1.3)volume widget. First, here
is my rc.lua (http://paste.pcspinnt.de/p65m4ypzx) I'm running awesome in 
version 3.5.5

As you see, my volume widgets are very simple:

--Create Volume Progressbar
-- Initialize widget
volwidget = awful.widget.progressbar()
-- Progressbar properties
volwidget:set_width(5)
volwidget:set_height(16)
volwidget:set_vertical(true)
volwidget:set_background_color("#232323")
volwidget:set_border_color(nil)
volwidget:set_color("#606060")
volwidget:buttons(awful.util.table.join(
   awful.button({ }, 3, function () awful.util.spawn("pavucontrol") end),
   awful.button({ }, 1, function () 
awful.util.spawn("/home/shellmann/.config/awesome/scripts/pulsevolume.sh mute") 
end),
   awful.button({ }, 4, function () 
awful.util.spawn("/home/shellmann/.config/awesome/scripts/pulsevolume.sh up") 
end),
   awful.button({ }, 5, function () 
awful.util.spawn("/home/shellmann/.config/awesome/scripts/pulsevolume.sh down") 
end)
))
--Register widget
vicious.register(volwidget, vicious.widgets.volume, "$1", 0.2, "Master")
voltext = wibox.widget.textbox()
voltext:buttons(awful.util.table.join(
   awful.button({ }, 3, function () awful.util.spawn("pavucontrol") end),
   awful.button({ }, 1, function () 
awful.util.spawn("/home/shellmann/.config/awesome/scripts/pulsevolume.sh mute") 
end),
   awful.button({ }, 4, function () 
awful.util.spawn("/home/shellmann/.config/awesome/scripts/pulsevolume.sh up") 
end),
   awful.button({ }, 5, function () 
awful.util.spawn("/home/shellmann/.config/awesome/scripts/pulsevolume.sh down") 
end)
))
vicious.register(voltext, vicious.widgets.volume, "$2 ", 2, "Master")

The Problem is, starting awesome tooks nearly 5 seconds. Without this widget < 
1 sec

Alsa is starting on boot:

rc-udate gives:
...
alsasound |      default
...

I'm really helpless and have no idea what to do. May anyone has a good idea....

--
Mit freundlichen Grüßen

Stefan Hellmann

[email protected]
http://www.pcspinnt.de

Attachment: signature.asc
Description: Digital signature

Reply via email to