From 4b5aa0b95f38bf440563468e0f45a88d1c4e0410 Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Fri, 14 Oct 2016 22:23:26 +0300 Subject: [PATCH] amixer (hotkeys): +-1% -> +-5%. --- rc.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rc.lua b/rc.lua index 8ed6f1e..d3b1d8c 100644 --- a/rc.lua +++ b/rc.lua @@ -391,17 +391,17 @@ root.buttons(awful.util.table.join( globalkeys = awful.util.table.join( -- Volume control -- awful.key({ modkey }, ".", function () - os.execute("pgrep -x amixer || amixer set Master 1%+") end), + os.execute("pgrep -x amixer || amixer set Master 5%+") end), awful.key({ modkey }, ",", function () - os.execute("pgrep -x amixer || amixer set Master 1%-") end), + os.execute("pgrep -x amixer || amixer set Master 5%-") end), awful.key({ modkey }, "/", function () awful.util.spawn("amixer sset Master toggle") end), -- Volume control -- awful.key({ }, "XF86AudioRaiseVolume", function () - os.execute("pgrep -x amixer || amixer set Master 1%+") end), + os.execute("pgrep -x amixer || amixer set Master 5%+") end), awful.key({ }, "XF86AudioLowerVolume", function () - os.execute("pgrep -x amixer || amixer set Master 1%-") end), + os.execute("pgrep -x amixer || amixer set Master 5%-") end), awful.key({ }, "XF86AudioMute", function () awful.util.spawn("amixer sset Master toggle") end),