added some padding before run prompts

Former-commit-id: cca65e5dd8
Former-commit-id: 8177d36aa9d28c85c343c7c3a92d1f3235dc79a2
Former-commit-id: ff9ec39913c5b13dc8d8176f03dc543a99aee91a
Former-commit-id: a02fdfc2c8def85092b18d58bf9f2bedc302d55b
This commit is contained in:
elena 2018-05-17 06:52:25 +03:00
parent 3ba624621c
commit e660daf771

View file

@ -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"