Merge pull request #291 from TD-Sky/master

Add the 'step' arg for volume-widget
This commit is contained in:
streetturtle 2021-08-27 20:51:24 -04:00 committed by GitHub
commit dbb474eaf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -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 GET_VOLUME_CMD = 'amixer -D pulse sget Master'
local INC_VOLUME_CMD = 'amixer -D pulse sset Master 5%+'
local DEC_VOLUME_CMD = 'amixer -D pulse sset Master 5%-'
local INC_VOLUME_CMD
local DEC_VOLUME_CMD
local TOG_VOLUME_CMD = 'amixer -D pulse sset Master toggle'
@ -166,6 +166,10 @@ local function worker(user_args)
local mixer_cmd = args.mixer_cmd or 'pavucontrol'
local widget_type = args.widget_type
local refresh_rate = args.refresh_rate or 1
local step = args.step or 5
INC_VOLUME_CMD = 'amixer -D pulse sset Master ' .. step .. '%+'
DEC_VOLUME_CMD = 'amixer -D pulse sset Master ' .. step .. '%-'
if widget_types[widget_type] == nil then
volume.widget = widget_types['icon_and_text'].get_widget(args.icon_and_text_args)