awesomewm/actions.lua
2023-10-27 11:14:36 +02:00

16 lines
319 B
Lua

local naughty = require("naughty")
actions = {}
function actions.toggle_naughty()
if naughty.is_suspended() then
naughty.resume()
naughty.notify({ text = "Notifications enabled", timeout = 2 })
else
naughty.notify({ text = "Notifications disabled", timeout = 2 })
naughty.suspend()
end
end
return actions