From 0aea953a6c96d20282d2495d4f410e0e5eb4c2fb Mon Sep 17 00:00:00 2001 From: lygamac Date: Sun, 26 Dec 2021 12:39:36 +0100 Subject: 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. --- volume-widget/volume.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'volume-widget/volume.lua') diff --git a/volume-widget/volume.lua b/volume-widget/volume.lua index 1b7b81c..4c44042 100644 --- a/volume-widget/volume.lua +++ b/volume-widget/volume.lua @@ -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 -- cgit v1.2.3