From 627efe569099a6d67a5349e2b61aedf5770f01e4 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Sat, 19 May 2012 12:56:46 +0200 Subject: awesome: Spawn luakit directly xdg-open no longer works with about:config, and is not necessary, since luakit is used on all pcs. --- .config/awesome/awesome.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/awesome/awesome.lua b/.config/awesome/awesome.lua index d633b95..5f788c2 100644 --- a/.config/awesome/awesome.lua +++ b/.config/awesome/awesome.lua @@ -218,7 +218,7 @@ globalkeys = awful.util.table.join( -- Standard program awful.key({ modkey, }, "x", function () awful.util.spawn(terminal) 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("xdg-open about:blank") end), + awful.key({ modkey, }, "w", function () awful.util.spawn("luakit") end), awful.key({ modkey, }, "p", function () awful.util.spawn("pidgin") end), awful.key({ modkey, }, "n", function () awful.util.spawn(terminal .. " -e wicd-curses") end), awful.key({ modkey, }, "i", function () awful.util.spawn(terminal .. " -geometry 100x30 -e " .. os.getenv("HOME") .. "/.scripts/start_remote_irssi.sh") end), -- cgit