48 lines
1.4 KiB
Lua
48 lines
1.4 KiB
Lua
local wibox = require("wibox")
|
|
local awful = require("awful")
|
|
local beautiful = require("beautiful")
|
|
local dpi = require("beautiful").xresources.apply_dpi
|
|
local gears = require("gears")
|
|
local pctl = require("mods.playerctl")
|
|
local helpers = require("helpers")
|
|
local playerctl = pctl.lib()
|
|
|
|
local art = wibox.widget {
|
|
image = helpers.cropSurface(1, gears.surface.load_uncached(beautiful.songdefpicture)),
|
|
forced_height = dpi(40),
|
|
clip_shape = helpers.rrect(100),
|
|
forced_width = dpi(40),
|
|
widget = wibox.widget.imagebox
|
|
}
|
|
|
|
local songname = wibox.widget {
|
|
markup = helpers.colorizeText('Nothing Playing', beautiful.fg),
|
|
align = 'left',
|
|
valign = 'center',
|
|
font = beautiful.sans .. " 16",
|
|
widget = wibox.widget.textbox
|
|
}
|
|
|
|
local widget = wibox.widget {
|
|
art,
|
|
songname,
|
|
layout = wibox.layout.fixed.horizontal,
|
|
spacing = 10,
|
|
}
|
|
|
|
playerctl:connect_signal("metadata", function(_, title, artist, album_path, album, new, player_name)
|
|
if album_path == "" then
|
|
album_path = beautiful.songdefpicture
|
|
end
|
|
if string.len(title) > 30 then
|
|
title = string.sub(title, 0, 30) .. "..."
|
|
end
|
|
if string.len(artist) > 22 then
|
|
artist = string.sub(artist, 0, 22) .. "..."
|
|
end
|
|
songname:set_markup_silently(helpers.colorizeText(title or "NO", beautiful.fg))
|
|
art:set_image(helpers.cropSurface(1, gears.surface.load_uncached(album_path)))
|
|
end)
|
|
|
|
return widget
|