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