From b9fb49f28bcee6594078d48e5cece6c4225e7755 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Thu, 25 May 2017 21:44:52 +0200 Subject: [PATCH] Awesome: Revert cmus previous/next bindings Now that control is back to its original position, 'next' must be more accessible. --- .config/awesome/rc.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 8db21efd..2cd782ad 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -312,9 +312,9 @@ globalkeys = awful.util.table.join( {description="music player", group="launcher"}), awful.key({ modkey, "Mod1" }, "a", function () awful.spawn("cmus-remote -u") end, {description="music toggle", group="launcher"}), - awful.key({ modkey, "Control" }, "a", function () awful.spawn("cmus-remote -n") end, + awful.key({ modkey, "Shift" }, "a", function () awful.spawn("cmus-remote -n") end, {description="music next", group="launcher"}), - awful.key({ modkey, "Shift" }, "a", function () awful.spawn("cmus-remote -r") end, + awful.key({ modkey, "Control" }, "a", function () awful.spawn("cmus-remote -r") end, {description="music previous", group="launcher"}), awful.key({ }, "Print", function () awful.spawn("scrot '" .. os.getenv("HOME") .. "/temp/screen-%F-%T.png'") end, {description="screenshot", group="launcher"}),