move ossvol widget to match new layout

This commit is contained in:
Jörg Thalheim 2017-01-25 20:11:39 +01:00
parent bd08badccc
commit 9325780f02
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 3 additions and 4 deletions

View File

@ -111,8 +111,7 @@ Supported Platforms: platform independent
- Returns:
* returns 1st value as temperature of requested graphics device
vicious.contrib.ossvol
-
**vicious.contrib.ossvol**
vicious.contrib.pop
-

View File

@ -13,7 +13,7 @@ local string = { match = string.match }
-- Ossvol: provides volume levels of requested OSS mixers
-- vicious.contrib.ossvol
local ossvol = {}
local ossvol_linux = {}
-- {{{ Volume widget type
@ -51,4 +51,4 @@ local function worker(format, warg)
end
-- }}}
return setmetatable(ossvol, { __call = function(_, ...) return worker(...) end })
return setmetatable(ossvol_linux, { __call = function(_, ...) return worker(...) end })