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"}),