Removed volume notification
parent
b1c1c8faa6
commit
b65616d1cc
|
@ -101,16 +101,6 @@ volume.mute = function()
|
||||||
volume.commands:mute()
|
volume.commands:mute()
|
||||||
volume.muted = true
|
volume.muted = true
|
||||||
|
|
||||||
-- Spawn notification
|
|
||||||
local n = naughty.notify({
|
|
||||||
title = "Volume muted",
|
|
||||||
text = "Silence!",
|
|
||||||
timeout = 1,
|
|
||||||
replaces_id = volume.notificationid
|
|
||||||
})
|
|
||||||
|
|
||||||
volume.notificationid = n.id
|
|
||||||
|
|
||||||
volume.exec_hooks()
|
volume.exec_hooks()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -118,16 +108,6 @@ volume.unmute = function()
|
||||||
volume.commands:unmute()
|
volume.commands:unmute()
|
||||||
volume.muted = false
|
volume.muted = false
|
||||||
|
|
||||||
-- Spawn notification
|
|
||||||
local n = naughty.notify({
|
|
||||||
title = "Volume unmuted",
|
|
||||||
text = "Loud.",
|
|
||||||
timeout = 1,
|
|
||||||
replaces_id = volume.notificationid
|
|
||||||
})
|
|
||||||
|
|
||||||
volume.notificationid = n.id
|
|
||||||
|
|
||||||
volume.exec_hooks()
|
volume.exec_hooks()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue