diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-12-20 22:07:45 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-12-20 22:07:45 +0530 |
commit | d7dbe649fe2fb31cf9678ac738e1251577b37161 (patch) | |
tree | 1bd8a4767ef7dda0494b1ee3f31e87213e3db58e /awesome/rc.lua | |
parent | f7aac2c49b7cd5eb14537f95cef6bcff4a364998 (diff) |
removed the run lua code prompt; pushing changes before going to sleep
Diffstat (limited to 'awesome/rc.lua')
-rwxr-xr-x | awesome/rc.lua | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index 9dad702c..c958cd81 100755 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -348,24 +348,7 @@ globalkeys = gears.table.join( -- This launches dmenu awful.key({ "Mod1" }, "Return", function () awful.spawn.with_shell("dmenu_run") end, - {description = "run prompt", group = "launcher"}), - - awful.key({ modkey }, "x", - function () - awful.prompt.run { - prompt = "Run Lua code: ", - textbox = awful.screen.focused().mypromptbox.widget, - exe_callback = awful.util.eval, - history_path = awful.util.get_cache_dir() .. "/history_eval" - } - end, - {description = "lua execute prompt", group = "awesome"}), - -- Menubar - awful.key({ modkey }, "p", function() menubar.show() end, - {description = "show the menubar", group = "launcher"}) - - - + {description = "run prompt", group = "launcher"}) ) |