]>
git.madduck.net Git - etc/awesome.git/commitdiff
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (parent:
2565a0f )
-- ALSA volume bar
-- lain.widgets.alsabar
local alsabar = {
-- ALSA volume bar
-- lain.widgets.alsabar
local alsabar = {
channel = "Master",
step = "2%",
channel = "Master",
step = "2%",
awful.util.spawn(alsabar.mixer)
end),
awful.button ({}, 3, function()
awful.util.spawn(alsabar.mixer)
end),
awful.button ({}, 3, function()
- awful.util.spawn(string.format("amixer -c %s set %s toggle", alsabar.car d, alsabar.channel))
+ awful.util.spawn(string.format("%s set %s toggle", alsabar.cm d, alsabar.channel))
alsabar.update()
end),
awful.button ({}, 4, function()
alsabar.update()
end),
awful.button ({}, 4, function()
- awful.util.spawn(string.format("amixer -c %s set %s %s+", alsabar.car d, alsabar.channel, alsabar.step))
+ awful.util.spawn(string.format("%s set %s %s+", alsabar.cm d, alsabar.channel, alsabar.step))
alsabar.update()
end),
awful.button ({}, 5, function()
alsabar.update()
end),
awful.button ({}, 5, function()
- awful.util.spawn(string.format("amixer -c %s set %s %s-", alsabar.car d, alsabar.channel, alsabar.step))
+ awful.util.spawn(string.format("%s set %s %s-", alsabar.cm d, alsabar.channel, alsabar.step))