theme: whitelist icons in /usr

We use them!
This commit is contained in:
Vincent Bernat 2020-08-08 23:26:19 +02:00
parent 07bc3d4d0b
commit f0504d1486

View file

@ -65,7 +65,9 @@ for _, preset in pairs({"normal", "low", "critical"}) do
naughty.config.presets[preset].border_width = 3 * theme.scale naughty.config.presets[preset].border_width = 3 * theme.scale
end end
naughty.config.notify_callback = function(args) naughty.config.notify_callback = function(args)
args.icon = nil if args.icon ~= nil and string.sub(args.icon, 1, 5) ~= "/usr/" then
args.icon = nil
end
return args return args
end end