volume-widget: fix `INC_VOLUME_CMD` and `DEC_VOLUME_CMD`
PR #315 didn't remove `pulse` after specifying the device variable, making the command to echo an error.
This commit is contained in:
parent
01a4f428e0
commit
0aea953a6c
|
@ -18,8 +18,8 @@ local utils = require("awesome-wm-widgets.volume-widget.utils")
|
|||
|
||||
local LIST_DEVICES_CMD = [[sh -c "pacmd list-sinks; pacmd list-sources"]]
|
||||
local function GET_VOLUME_CMD(device) return 'amixer -D ' .. device .. ' sget Master' end
|
||||
local function INC_VOLUME_CMD(device, step) return 'amixer -D ' .. device .. ' pulse sset Master ' .. step .. '%+' end
|
||||
local function DEC_VOLUME_CMD(device, step) return 'amixer -D ' .. device .. ' pulse sset Master ' .. step .. '%-' end
|
||||
local function INC_VOLUME_CMD(device, step) return 'amixer -D ' .. device .. ' sset Master ' .. step .. '%+' end
|
||||
local function DEC_VOLUME_CMD(device, step) return 'amixer -D ' .. device .. ' sset Master ' .. step .. '%-' end
|
||||
local function TOG_VOLUME_CMD(device) return 'amixer -D ' .. device .. ' sset Master toggle' end
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue