awesomewm/actions.lua
2024-02-06 17:25:23 +01:00

16 lines
325 B
Lua

local naughty = require("naughty")
local 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