diff options
author | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2018-03-11 22:44:40 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2018-03-11 22:44:40 +0700 |
commit | f26bdd5643051420281f163b68d2a921276e3954 (patch) | |
tree | 68e74415ed6bca137777f27e33487397043c0db6 /awesome | |
parent | 90065ac34d94c814421b5e2e2d12b21a64978d00 (diff) | |
download | dotfiles-f26bdd5643051420281f163b68d2a921276e3954.tar.gz |
Update 2018-03-11
Diffstat (limited to 'awesome')
-rw-r--r-- | awesome/.config/awesome/rc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index d8af574..52578bb 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -434,9 +434,9 @@ globalkeys = awful.util.table.join( awful.key({modkey, "Control"}, "l", function() awful.tag.incncol(-1, nil, true) end, {description = "decrease the number of columns", group = "layout"}), - awful.key({modkey}, "Return", function() awful.layout.inc(1) end, + awful.key({modkey}, "Return", function() awful.layout.inc(-1) end, {description = "select next", group = "layout"}), - awful.key({modkey, "Shift"}, "Return", function() awful.layout.inc(-1) end, + awful.key({modkey, "Shift"}, "Return", function() awful.layout.inc(1) end, {description = "select previous", group = "layout"}), awful.key({modkey, "Control"}, "n", |