Update rc.lua.template

Add a keybindings to dismiss notifications with Ctrl+Space
This commit is contained in:
Pratik Devkota 2021-06-24 09:28:30 +00:00 committed by GitHub
parent 659e79b292
commit d67e88c6ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

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