nixos-config/modules/home-manager/ricing/awesomewm/dotfiles/misc/dings/music.lua
2024-07-12 18:19:30 +09:00

11 lines
347 B
Lua

local naughty = require("naughty")
local bling = require("mods.playerctl")
local playerctl = bling.lib()
playerctl:connect_signal("metadata",
function(_, title, artist, album_path, album, new, player_name)
if new == true then
naughty.notify({ title = 'New Song', text = title .. " by " .. artist, image = album_path })
end
end)