diff options
| author | Kyle Javier | 2021-09-29 12:48:29 -0400 |
|---|---|---|
| committer | Kyle Javier | 2021-09-29 12:48:29 -0400 |
| commit | d1801d204e283a6ff829be5b3e92847c24050cf6 (patch) | |
| tree | 4c4fb2115a818b0a77b1a6361223cf9728bbc2b6 /awesome | |
| parent | 04edd4e76db90db9a70d3bd5adf09656d4839603 (diff) | |
changed layout manipulation settings
Diffstat (limited to 'awesome')
| -rw-r--r-- | awesome/rc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index a50e567..351c080 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -273,9 +273,9 @@ globalkeys = gears.table.join( {description = "show main menu", group = "awesome"}), -- Layout manipulation - awful.key({ modkey, "Control" }, "Up", function () awful.client.swap.byidx( 1) end, + awful.key({ modkey, "Control" }, "Down", function () awful.client.swap.byidx( 1) end, {description = "swap with next client by index", group = "client"}), - awful.key({ modkey, "Control"}, "Down", function () awful.client.swap.byidx( -1) end, + awful.key({ modkey, "Control"}, "Up", function () awful.client.swap.byidx( -1) end, {description = "swap with previous client by index", group = "client"}), -- Notification Manipulation |
