Skip to content

Instantly share code, notes, and snippets.

@farhaven
Created May 3, 2009 17:03
Show Gist options
  • Save farhaven/106056 to your computer and use it in GitHub Desktop.
Save farhaven/106056 to your computer and use it in GitHub Desktop.
awful.key({ config.global.modkey, "Mod4" }, "Return", function()
awful.prompt.run({ prompt = " > " },
tb_prompt,
function (s)
local txt = awful.util.escape(awful.util.pread(s.." 2>&1"))
naughty.notify({ text = txt, timeout = 0, screen = mouse.screen })
end,
awful.completion.shell,
os.getenv("HOME") .. "/.cache/awesome/history_commands"
)
end),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment