notify when starting terminal
This commit is contained in:
parent
f7dd3bbfd0
commit
f699becd27
|
@ -320,7 +320,10 @@ globalkeys = awful.util.table.join(
|
|||
end,
|
||||
{description = "go back", group = "client"}),
|
||||
-- Standard program
|
||||
awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end,
|
||||
awful.key({ modkey, }, "Return", function ()
|
||||
awful.spawn(terminal)
|
||||
naughty.notify({title = "Starting " .. options.terminal})
|
||||
end,
|
||||
{description = "open a terminal", group = "launcher"}),
|
||||
awful.key({ modkey, "Control" }, "r", awesome.restart,
|
||||
{description = "reload awesome", group = "awesome"}),
|
||||
|
@ -423,7 +426,7 @@ globalkeys = awful.util.table.join(
|
|||
|
||||
awful.key({modkey}, "a", function ()
|
||||
os.execute(options.browser .. '&')
|
||||
naughty.notify({title = options.browser .. " starting..."})
|
||||
naughty.notify({title = "Starting " .. options.browser})
|
||||
end, {description="start the web browser", group="custom"}),
|
||||
|
||||
awful.key({modkey}, "l", function()
|
||||
|
|
Loading…
Reference in New Issue