]> git.rmz.io Git - dotfiles.git/commitdiff
move modkey definition to bindings
authorSamir Benmendil <samir.benmendil@gmail.com>
Fri, 6 Sep 2013 15:46:11 +0000 (17:46 +0200)
committerSamir Benmendil <samir.benmendil@gmail.com>
Fri, 6 Sep 2013 15:46:11 +0000 (17:46 +0200)
awesome/bindings.lua
awesome/rc.lua

index 6d9b130d0564c50b11dc4a7848518b30296141cf..2597eb240a69d9fe6bf42f0e4c53301a8612b9e2 100644 (file)
@@ -1,3 +1,10 @@
+-- Default modkey.
+-- Usually, Mod4 is the key with a logo between Control and Alt.
+-- If you do not like this or do not have such a key,
+-- I suggest you to remap Mod4 to another key using xmodmap or other tools.
+-- However, you can use another modifier like Mod1, but it may interact with others.
+modkey = "Mod4"
+
 -- {{{ Mouse bindings
 root.buttons(awful.util.table.join(
     awful.button({ }, 3, function () mymainmenu:toggle() end),
index a8d2440923d095cc243049834bded64e8c3b073e..1e72079e4588e6125163d546822e7aae54edfed9 100644 (file)
@@ -45,13 +45,6 @@ terminal = "urxvt"
 editor = os.getenv("EDITOR") or "vim"
 editor_cmd = terminal .. " -e " .. editor
 
--- Default modkey.
--- Usually, Mod4 is the key with a logo between Control and Alt.
--- If you do not like this or do not have such a key,
--- I suggest you to remap Mod4 to another key using xmodmap or other tools.
--- However, you can use another modifier like Mod1, but it may interact with others.
-modkey = "Mod4"
-
 -- Tags
 require("tags")
 -- }}}