From 654a65abb068cfe97773c98f02da1ce8ebcf9560 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sat, 22 Aug 2020 21:34:16 +0200 Subject: [PATCH] volume: change step for volume --- lib/volume.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/volume.lua b/lib/volume.lua index d82d27a..a52c557 100644 --- a/lib/volume.lua +++ b/lib/volume.lua @@ -43,11 +43,11 @@ local function change(what, how) end function increase(what) - change(what, "5%+") + change(what, "2%+") end function decrease(what) - change(what, "5%-") + change(what, "2%-") end function toggle(what)