From 738c1c8e45e33e47cca9954c0ab08d8b581b1960 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Fri, 16 Jun 2017 19:11:31 +0100 Subject: [PATCH] Awesome: Bind Eshell to modkey+Return --- .config/awesome/rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 2cd782ad..51c2d59d 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -297,7 +297,7 @@ globalkeys = awful.util.table.join( {description = "toggle maximize", group = "screen"}), -- Standard program - awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end, + awful.key({ modkey, }, "Return", function () awful.spawn("emacsclient -a '' -n -c -e '(eshell t)'") end, {description = "open a terminal", group = "launcher"}), awful.key({ modkey, "Control" }, "r", awesome.restart, {description = "reload awesome", group = "awesome"}),