summaryrefslogtreecommitdiff
path: root/volumearc-widget
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@gmail.com>2020-04-13 08:45:54 -0400
committerstreetturtle <streetturtle@gmail.com>2020-04-13 08:45:54 -0400
commitedb5283c6d644a182d9d2c789b14bdeb372c4928 (patch)
tree2d75f4a4fd0a45704af228f8eb52983a4adfe2eb /volumearc-widget
parent224c7a6acb2919d5c7f94bcfba95ac19692269d9 (diff)
volumearc - inc/dec volume quietly
Diffstat (limited to 'volumearc-widget')
-rw-r--r--volumearc-widget/volumearc.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/volumearc-widget/volumearc.lua b/volumearc-widget/volumearc.lua
index 33cc99c..eb2ff68 100644
--- a/volumearc-widget/volumearc.lua
+++ b/volumearc-widget/volumearc.lua
@@ -15,9 +15,9 @@ local watch = require("awful.widget.watch")
local wibox = require("wibox")
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 TOG_VOLUME_CMD = 'amixer -D pulse sset Master toggle'
+local INC_VOLUME_CMD = 'amixer -q -D pulse sset Master 5%+'
+local DEC_VOLUME_CMD = 'amixer -q -D pulse sset Master 5%-'
+local TOG_VOLUME_CMD = 'amixer -q -D pulse sset Master toggle'
local PATH_TO_ICON = "/usr/share/icons/Arc/status/symbolic/audio-volume-muted-symbolic.svg"