aboutsummaryrefslogtreecommitdiff
path: root/awesome
diff options
context:
space:
mode:
authorKyle Javier2021-09-23 13:53:03 -0400
committerKyle Javier2021-09-23 13:53:03 -0400
commit50b3857273c076a398f376713a3928b8a5c8a4a0 (patch)
tree4dd10f029dcba5b8449f902183cf4f3c43ca6221 /awesome
parent7d1da16facd3b1511bdd1a69f2631e8d818bcde9 (diff)
added do not disturb toggle for notification
Diffstat (limited to 'awesome')
-rw-r--r--awesome/rc.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index 373b510..37caef7 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -263,6 +263,10 @@ globalkeys = gears.table.join(
awful.key({ modkey, "Control"}, "Down", function () awful.client.swap.byidx( -1) end,
{description = "swap with previous client by index", group = "client"}),
+ -- Notifications Settings
+ awful.key({ modkey, }, "n", function () naughty.toggle() naughty.destroy_all_notifications() end,
+ {description = "Toggle Do Not Disturb for Notifications", group = "client"}),
+
-- Unmodified Keys - Kyle
--[[ awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end,