/usr/share/awesome/lib/flaw/alsa.lua is in awesome-extra 2012061101.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | -- flaw, a Lua OO management framework for Awesome WM widgets.
-- Copyright (C) 2010,2011 David Soulayrol <david.soulayrol AT gmail DOT net>
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
-- Grab environment.
local io = io
local math = math
local os = os
local string = string
local tonumber = tonumber
local beautiful = require('beautiful')
local naughty = require('naughty')
local awful = {
button = require("awful.button"),
util = require("awful.util"),
}
local flaw = {
helper = require('flaw.helper'),
gadget = require('flaw.gadget'),
provider = require('flaw.provider')
}
--- ALSA control gadgets and provider.
--
-- <p>This module contains a provider for ALSA information and two
-- gadgets: a text gadget and an icon gadget.</p>
--
-- <h2>Gadgets</h2>
--
-- <p>The ID of the gadgets designates the identifier of the audio
-- card to control. ALSA gadgets provide no custom parameters. See the
-- <a href="flaw.gadget.html">gadget</a> module documentation to learn
-- about standard gadgets parameters.</p>
--
-- <p>All ALSA gadgets specialize their standard counterpart to allow
-- you to control the volume from the Master channel of the monitored
-- card. The buttons 4 and 5 of the mouse - which should normally be
-- bound to the wheel up and down movements - allow you to change the
-- sound level, whereas the left click mutes the channel.</p>
--
-- <h3>Icon Gadget</h3>
--
-- <p>The ALSA icon gadget can be instantiated by indexing the gadget
-- module with <code>icon.alsa</code>. Here is an exemple which
-- assumes the card identifier is 0, and the path of the icon to
-- display is stored in a <b>beautiful</b> property.</p>
--
-- <div class='example'>
-- g = flaw.gadget.icon.alsa(<br/>
-- '0', {}, { image = image(beautiful.sound_icon) })<br/>
-- </div>
--
-- <h3>Text Gadget</h3>
--
-- <p>The ALSA text gadget can be instantiated by indexing the gadget
-- module with <code>text.alsa</code>. By default, the gadget pattern
-- is <code>'$volume%'</code>. See the provider's documentation below
-- to learn about the available variables.</p>
--
-- <div class='example'>
-- g = flaw.gadget.text.alsa('0')
-- </div>
--
-- <h2>Provider</h2>
--
-- <p>The ALSA provider relies on the <code>amixer</code> program to
-- get the master channel status as well as to modify to sound
-- level</p>
--
-- <p>The ALSA provider data is composed of the following fields.</p>
--
-- <ul>
--
-- <li><code>volume</code>
--
-- <p>The sound level in percent on the Master channel on the monitored card,
-- as a number.</p></li>
--
-- <li><code>s_volume</code>
--
-- <p>A string which represents the current sound level in percent of
-- the Master channel on the monitored card, with a visual hint when
-- it is muted. The string is 3 characters long, padded by the
-- left.</p></li>
--
-- </ul>
--
--
-- @author David Soulayrol <david.soulayrol AT gmail DOT com>
-- @copyright 2010,2011 David Soulayrol
module('flaw.alsa')
CHANNEL = 'Master'
--- The ALSA provider prototype.
--
-- <p>The ALSA provider type is set to <code>alsa._NAME</code>.</p>
--
-- @class table
-- @name ALSAProvider
ALSAProvider = flaw.provider.CyclicProvider:new{ type = _NAME }
--- Callback for provider refresh.
function ALSAProvider:do_refresh()
local f = io.popen("amixer -c " .. self.id .. " -- sget " .. CHANNEL)
-- The following is shamelessly ripped of the Obvious lib.
-- TODO: In the future, it would be nice to analyse the different
-- playback channels (see the amix output).
if f ~= nil then
local status = f:read('*all')
if status ~=nil then
self.data.s_volume = flaw.helper.strings.pad_left(
string.match(status, '(%d?%d?%d)%%'), 3)
self.data.volume = tonumber(self.data.s_volume) or 0
status = string.match(status, '%[(o[^%]]*)%]')
if status == nil or string.find(status, 'off', 1, true) then
self.data.s_volume = '---'
end
end
f:close()
end
end
--- Raise the sound level on the Master channel from the monitored
--- card.
--
-- @param offset the value to add to the current sound level. This
-- value is one if the paramenter is <code>nil</code>.
function ALSAProvider:raise(offset)
awful.util.spawn('amixer -q -c ' .. self.id ..
' sset ' .. CHANNEL .. ' ' .. (offset or 1) .. '+', false)
self:do_refresh()
self:refresh_gadgets(true)
end
--- Lower the sound level on the Master channel from the monitored
--- card.
--
-- @param offset the value to remove from the current sound
-- level. This value is one if the paramenter is
-- <code>nil</code>.
function ALSAProvider:lower(offset)
awful.util.spawn('amixer -q -c ' .. self.id ..
' sset ' .. CHANNEL .. ' ' .. (offset or 1) .. '-', false)
self:do_refresh()
self:refresh_gadgets(true)
end
--- Mute the Master channel from the monitored card.
function ALSAProvider:mute()
awful.util.spawn('amixer -q -c ' .. self.id ..
' sset ' .. CHANNEL .. ' toggle', false)
self:do_refresh()
self:refresh_gadgets(true)
end
--- A factory for ALSA providers.
--
-- <p>Only one provider is built for a card ID. Created providers are
-- stored in the global provider cache.</p>
--
-- @param id the identifier of the card for which the new
-- provider should gather information
-- @return a brand new ALSA provider, or an existing one if the
-- given ID was already used to create one.
function provider_factory(id)
local p = flaw.provider.get(_NAME, id)
-- Create the provider if necessary.
if p == nil then
p = ALSAProvider:new{ id = id, data = { volume = 0, s_volume = '---'} }
flaw.provider.add(p)
end
return p
end
-- A Text gadget prototype for ALSA status display.
ALSATextGadget = flaw.gadget.TextGadget:new{}
-- Create the wrapped gadget.
function ALSATextGadget:create(wopt)
flaw.gadget.TextGadget.create(self, wopt)
self.widget:buttons(
awful.util.table.join(
awful.button({ }, 4, function() self.provider:raise() end),
awful.button({ }, 5, function() self.provider:lower() end),
awful.button({ }, 1, function() self.provider:mute() end)))
end
-- A progress bar gadget prototype for ALSA status display.
ALSABarGadget = flaw.gadget.BarGadget:new{}
-- Create the wrapped gadget.
function ALSABarGadget:create(wopt)
flaw.gadget.BarGadget.create(self, wopt)
self.widget:buttons(
awful.util.table.join(
awful.button({ }, 4, function() self.provider:raise() end),
awful.button({ }, 5, function() self.provider:lower() end),
awful.button({ }, 1, function() self.provider:mute() end)))
end
-- An icon gadget prototype for ALSA status display.
ALSAIconGadget = flaw.gadget.IconGadget:new{}
-- Create the wrapped gadget.
function ALSAIconGadget:create(wopt)
flaw.gadget.TextGadget.create(self, wopt)
self.widget:buttons(
awful.util.table.join(
awful.button({ }, 4, function() self.provider:raise() end),
awful.button({ }, 5, function() self.provider:lower() end),
awful.button({ }, 1, function() self.provider:mute() end)))
end
--- Module initialization routine.
--
-- <p> This method tests the available information on the system. If
-- alsa data can be found, if registers gadgets and returns the
-- module; otherwise it simply returns nil.</p>
--
-- @return return this module if it can be used on the system,
-- false otherwise.
function init()
-- TODO: test alsa.
flaw.gadget.register.bar(
_M, { delay = 1, value = 'volume' }, {}, ALSABarGadget)
flaw.gadget.register.text(
_M, { delay = 1, pattern = '$s_volume%' }, {}, ALSATextGadget)
flaw.gadget.register.icon(_M, { delay = 1 }, {}, ALSAIconGadget)
return _M
end
|