Merge pull request #287 from pratik-devkota/patch-1
Add a key binding to dismiss notifications
This commit is contained in:
commit
e6f3a2b64f
|
@ -250,6 +250,9 @@ root.buttons(mytable.join(
|
||||||
-- {{{ Key bindings
|
-- {{{ Key bindings
|
||||||
|
|
||||||
globalkeys = mytable.join(
|
globalkeys = mytable.join(
|
||||||
|
-- Destroy all notifications
|
||||||
|
awful.key({ "Control", }, "space", function() naughty.destroy_all_notifications() end,
|
||||||
|
{description = "destroy all notifications", group = "hotkeys"}),
|
||||||
-- Take a screenshot
|
-- Take a screenshot
|
||||||
-- https://github.com/lcpz/dots/blob/master/bin/screenshot
|
-- https://github.com/lcpz/dots/blob/master/bin/screenshot
|
||||||
awful.key({ altkey }, "p", function() os.execute("screenshot") end,
|
awful.key({ altkey }, "p", function() os.execute("screenshot") end,
|
||||||
|
|
Loading…
Reference in New Issue