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.
4 Licensed under GNU General Public License v2
5 * (c) 2013, Luke Bonham
10 local newtimer = require("lain.helpers").newtimer
12 local awful = require("awful")
13 local beautiful = require("beautiful")
14 local naughty = require("naughty")
16 local io = { popen = io.popen }
17 local math = { modf = math.modf }
18 local string = { format = string.format,
21 local tonumber = tonumber
23 local setmetatable = setmetatable
26 -- lain.widgets.alsabar
32 background = beautiful.bg_normal,
37 terminal = terminal or "xterm",
38 mixer = terminal .. " -e alsamixer",
41 font = beautiful.font:sub(beautiful.font:find(""), beautiful.font:find(" ")),
43 color = beautiful.fg_normal,
51 function alsabar.notify()
58 font = alsabar.notifications.font .. " " ..
59 alsabar.notifications.font_size,
60 fg = alsabar.notifications.color
65 preset.title = alsabar.channel .. " - Muted"
67 preset.title = alsabar.channel .. " - " .. alsabar._current_level .. "%"
70 int = math.modf((alsabar._current_level / 100) * alsabar.notifications.bar_size)
72 .. string.rep("|", int)
73 .. string.rep(" ", alsabar.notifications.bar_size - int)
76 if alsabar._notify ~= nil then
77 alsabar._notify = naughty.notify ({
78 replaces_id = alsabar._notify.id,
80 screen = client.focus and client.focus.screen or 1
83 alsabar._notify = naughty.notify ({
85 screen = client.focus and client.focus.screen or 1
90 local function worker(args)
91 local args = args or {}
92 local timeout = args.timeout or 4
93 local settings = args.settings or function() end
94 local width = args.width or 63
95 local height = args.heigth or 1
96 local ticks = args.ticks or false
97 local ticks_size = args.ticks_size or 7
98 local vertical = args.vertical or false
100 alsabar.channel = args.channel or alsabar.channel
101 alsabar.step = args.step or alsabar.step
102 alsabar.colors = args.colors or alsabar.colors
103 alsabar.notifications = args.notifications or alsabar.notifications
105 alsabar.bar = awful.widget.progressbar()
107 alsabar.bar:set_background_color(alsabar.colors.background)
108 alsabar.bar:set_color(alsabar.colors.unmute)
109 alsabar.tooltip = awful.tooltip({ objects = { alsabar.bar } })
110 alsabar.bar:set_width(width)
111 alsabar.bar:set_height(height)
112 alsabar.bar:set_ticks(ticks)
113 alsabar.bar:set_ticks_size(ticks_size)
114 alsabar.bar:set_vertical(vertical)
116 function alsabar.update()
117 -- Get mixer control contents
118 local f = io.popen("amixer -M get " .. alsabar.channel)
119 local mixer = f:read("*a")
122 -- Capture mixer control state: [5%] ... ... [on]
123 local volu, mute = string.match(mixer, "([%d]+)%%.*%[([%l]*)")
130 alsabar._current_level = tonumber(volu)
131 alsabar.bar:set_value(alsabar._current_level / 100)
133 if not mute and tonumber(volu) == 0 or mute == "off"
135 alsabar._muted = true
136 alsabar.tooltip:set_text (" [Muted] ")
137 alsabar.bar:set_color(alsabar.colors.mute)
139 alsabar._muted = false
140 alsabar.tooltip:set_text(string.format(" %s:%s ", alsabar.channel, volu))
141 alsabar.bar:set_color(alsabar.colors.unmute)
145 volume_now.level = tonumber(volu)
146 volume_now.status = mute
150 newtimer("alsabar", timeout, alsabar.update)
152 alsabar.bar:buttons (awful.util.table.join (
153 awful.button ({}, 1, function()
154 awful.util.spawn(alsabar.mixer)
156 awful.button ({}, 3, function()
157 awful.util.spawn(string.format("amixer set %s toggle", alsabar.channel))
160 awful.button ({}, 4, function()
161 awful.util.spawn(string.format("amixer set %s %s+", alsabar.channel, alsabar.step))
164 awful.button ({}, 5, function()
165 awful.util.spawn(string.format("amixer set %s %s-", alsabar.channel, alsabar.step))
173 return setmetatable(alsabar, { __call = function(_, ...) return worker(...) end })