X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/382e25f7d8c569293f3182f10c3b15ffb93b5e90..792150447c7b574e1ebea379c42613f6269c31e7:/awesome/bindings.lua diff --git a/awesome/bindings.lua b/awesome/bindings.lua index 123710d..96b31ea 100644 --- a/awesome/bindings.lua +++ b/awesome/bindings.lua @@ -126,17 +126,17 @@ globalkeys = awful.util.table.join(globalkeys, -- ranger awful.key({ modkey }, "r", function () awful.spawn(terminal .. " -e ranger") end), -- Volume - awful.key({ }, "XF86AudioMute", function () awful.spawn("ponymix toggle") end, + awful.key({ }, "XF86AudioMute", function () awful.spawn("pulsemixer --toggle-mute") end, {description = "toggle mute", group = "volume"}), - awful.key({ }, "XF86AudioLowerVolume", function () awful.spawn("ponymix decrease 5") end, + awful.key({ }, "XF86AudioLowerVolume", function () awful.spawn("pulsemixer --change-volume -5") end, {description = "decrease volume", group = "volume"}), - awful.key({ }, "XF86AudioRaiseVolume", function () awful.spawn("ponymix increase 5") end, + awful.key({ }, "XF86AudioRaiseVolume", function () awful.spawn("pulsemixer --change-volume +5") end, {description = "increase volume", group = "volume"}), - awful.key({ modkey }, "F10", function () awful.spawn("ponymix toggle") end, + awful.key({ modkey }, "F10", function () awful.spawn("pulsemixer --toggle-mute") end, {description = "toggle mute", group = "volume"}), - awful.key({ modkey }, "F11", function () awful.spawn("ponymix decrease 5") end, + awful.key({ modkey }, "F11", function () awful.spawn("pulsemixer --change-volume -5") end, {description = "decrease volume", group = "volume"}), - awful.key({ modkey }, "F12", function () awful.spawn("ponymix increase 5") end, + awful.key({ modkey }, "F12", function () awful.spawn("pulsemixer --change-volume +5") end, {description = "increase volume", group = "volume"}), -- Lock awful.key({ modkey, "Control" }, "Escape", function () awful.spawn("i3lock -c 000000") end),