From e660daf7717de02fb1cf04717293c3ec3cfd8e4d Mon Sep 17 00:00:00 2001 From: elena Date: Thu, 17 May 2018 06:52:25 +0300 Subject: [PATCH] added some padding before run prompts Former-commit-id: cca65e5dd81d214e909e25055b6f14c8ad813604 Former-commit-id: 8177d36aa9d28c85c343c7c3a92d1f3235dc79a2 Former-commit-id: ff9ec39913c5b13dc8d8176f03dc543a99aee91a Former-commit-id: a02fdfc2c8def85092b18d58bf9f2bedc302d55b --- config/awesome/rc.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index f2aa769..a9b5bac 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -249,7 +249,7 @@ awful.screen.connect_for_each_screen(function(s) awful.tag(names, s, layouts) -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt({prompt = "Run: ", fg = beautiful.accent}) + s.mypromptbox = awful.widget.prompt({prompt = " Run: ", fg = beautiful.accent}) -- Create a textbox widget which will contain a short string representing -- the layout we're using. We need one layoutbox per screen. s.mytextlayoutbox = wibox.widget.textbox() @@ -498,7 +498,7 @@ globalkeys = gears.table.join( awful.key({ modkey }, "r", function () awful.prompt.run { - prompt = "Lua: ", + prompt = " Lua: ", textbox = awful.screen.focused().mypromptbox.widget, exe_callback = awful.util.eval, history_path = awful.util.get_cache_dir() .. "/history_eval"