summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2014-05-10 15:45:16 +0200
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2014-05-10 15:45:16 +0200
commit2bea00e47acba89bf852fb9a054140c583b2ca61 (patch)
tree6561405c5de9d97aded8e02ac091ec57eb42b0db
parentf1c0a99fd4184d70d0cecd90ec52ea3f1116da26 (diff)
downloaddotfiles-2bea00e47acba89bf852fb9a054140c583b2ca61.tar.gz
dotfiles-2bea00e47acba89bf852fb9a054140c583b2ca61.tar.bz2
dotfiles-2bea00e47acba89bf852fb9a054140c583b2ca61.zip
awesome: Add nautilus and virt-manager shortcuts
-rw-r--r--.config/awesome/awesome.lua14
1 files changed, 8 insertions, 6 deletions
diff --git a/.config/awesome/awesome.lua b/.config/awesome/awesome.lua
index 595a03a..ffa5bfa 100644
--- a/.config/awesome/awesome.lua
+++ b/.config/awesome/awesome.lua
@@ -259,6 +259,8 @@ globalkeys = awful.util.table.join(
awful.key({ modkey, }, "x", function () spawn_from_awesome(terminal, false) end),
awful.key({ modkey, }, "a", function () awful.util.spawn(terminal .. " -geometry 100x25 -e pa-sink-ctl" ) end),
awful.key({ modkey, }, "w", function () awful.util.spawn("chromium") end),
+ awful.key({ modkey, }, "n", function () awful.util.spawn("nautilus") end),
+ awful.key({ modkey, }, "v", function () awful.util.spawn("virt-manager --no-fork") end),
awful.key({ modkey, }, "p", function () awful.util.spawn("pidgin") end),
awful.key({ modkey, }, "i", function () awful.util.spawn(terminal .. " -geometry 100x30 -e " .. os.getenv("HOME") .. "/.scripts/start_remote_irssi.sh") end),
@@ -310,12 +312,12 @@ clientkeys = awful.util.table.join(
awful.key({ modkey, }, "o", awful.client.movetoscreen ),
awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end),
awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
- awful.key({ modkey, }, "n",
- function (c)
- -- The client currently has the input focus, so it cannot be
- -- minimized, since minimized clients can't have the focus.
- c.minimized = true
- end),
+ --awful.key({ modkey, }, "n",
+ -- function (c)
+ -- -- The client currently has the input focus, so it cannot be
+ -- -- minimized, since minimized clients can't have the focus.
+ -- c.minimized = true
+ -- end),
awful.key({ modkey, }, "m",
function (c)
c.maximized_horizontal = not c.maximized_horizontal