diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-10-17 14:05:45 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-10-17 14:05:45 -0300 |
commit | bcd141ddd0d2647375f554440a9e678df4304c5a (patch) | |
tree | 00bd9bbdcd6afb49de87d4883703106e35a34338 | |
parent | e5e6eb7d262d796640a2446c4d51773bd15ccf22 (diff) | |
download | awesome-bcd141ddd0d2647375f554440a9e678df4304c5a.tar.gz awesome-bcd141ddd0d2647375f554440a9e678df4304c5a.tar.bz2 |
Updating keystrokes
-rw-r--r-- | config.dot/awesome.link/keys.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config.dot/awesome.link/keys.lua b/config.dot/awesome.link/keys.lua index 631b3d3..799a2c4 100644 --- a/config.dot/awesome.link/keys.lua +++ b/config.dot/awesome.link/keys.lua @@ -1,6 +1,7 @@ -- Key bindings globalkeys = awful.util.table.join(root.keys(), - awful.key({ modkey, }, "b", function () awful.util.spawn("firefox") end), + awful.key({ modkey, }, "x", function () awful.util.spawn("firefox") end), + awful.key({ modkey, }, "b", function () awful.util.spawn("firefox-profile normal") end), awful.key({ modkey, }, "v", function () awful.util.spawn("gvim") end), awful.key({ modkey, }, "m", function () awful.util.spawn("terminal xmutt") end), awful.key({ modkey, }, "g", function () awful.util.spawn("gimp") end), @@ -9,11 +10,12 @@ globalkeys = awful.util.table.join(root.keys(), awful.key({ modkey, }, "l", function () awful.util.spawn("xlock") end), awful.key({ modkey, }, "s", function () awful.util.spawn("xsuspend") end), awful.key({ modkey, }, "o", function () awful.util.spawn("chromium-browser") end), - awful.key({ modkey, }, "n", function () awful.util.spawn("firefox-profile normal") end), awful.key({ modkey, }, "t", function () awful.util.spawn("tor-browser") end), awful.key({ modkey, }, "c", function () awful.util.spawn("terminal xwyrd") end), awful.key({ modkey, }, "p", function () awful.util.spawn("terminal keyringer default") end), awful.key({ modkey, }, "u", function () awful.util.spawn("luakit") end), + awful.key({ modkey, }, "n", function () awful.util.spawn("terminal news") end), + awful.key({ modkey, }, "h", function () awful.util.spawn("terminal chat") end), --awful.key({ modkey, }, "b", function () awful.util.spawn("terminal irssi") end), -- Xlock |