summaryrefslogtreecommitdiff
path: root/volume-widget/volume.lua
diff options
context:
space:
mode:
authorlygamac <lygamingac@gmail.com>2021-12-26 12:39:36 +0100
committerlygamac <lygamingac@gmail.com>2021-12-26 12:39:36 +0100
commit0aea953a6c96d20282d2495d4f410e0e5eb4c2fb (patch)
tree47c10c2e6031fcbb458dd7df01ddebea45d016cb /volume-widget/volume.lua
parent01a4f428e0361f4222e8d2f14607fb03bbd6d94e (diff)
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.
Diffstat (limited to 'volume-widget/volume.lua')
-rw-r--r--volume-widget/volume.lua4
1 files changed, 2 insertions, 2 deletions
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