diff options
author | streetturtle <streetturtle@gmail.com> | 2020-04-13 08:45:54 -0400 |
---|---|---|
committer | streetturtle <streetturtle@gmail.com> | 2020-04-13 08:45:54 -0400 |
commit | edb5283c6d644a182d9d2c789b14bdeb372c4928 (patch) | |
tree | 2d75f4a4fd0a45704af228f8eb52983a4adfe2eb | |
parent | 224c7a6acb2919d5c7f94bcfba95ac19692269d9 (diff) |
volumearc - inc/dec volume quietly
-rw-r--r-- | volumearc-widget/volumearc.lua | 6 |
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" |