Compare commits
No commits in common. "7184e752c200da05f4d28570fad99ff045d3c641" and "5f788c81fb54e51256f2d2da0ea2dd4f6998ff90" have entirely different histories.
7184e752c2
...
5f788c81fb
2 changed files with 4 additions and 2 deletions
|
@ -62,7 +62,7 @@ export const TitleLabel = (player, params) => Label({
|
|||
truncate: 'end',
|
||||
justification: 'left',
|
||||
className: 'title',
|
||||
binds: [['label', player, 'track-title']],
|
||||
binds: [['label', player, 'trackTitle']],
|
||||
});
|
||||
|
||||
export const ArtistLabel = (player, params) => Label({
|
||||
|
@ -72,7 +72,9 @@ export const ArtistLabel = (player, params) => Label({
|
|||
truncate: 'end',
|
||||
justification: 'left',
|
||||
className: 'artist',
|
||||
binds: [['label', player, 'track-artists', a => a.join(', ') || '']],
|
||||
connections: [[player, label => {
|
||||
label.label = player.trackArtists.join(', ') || '';
|
||||
}]],
|
||||
});
|
||||
|
||||
export const PlayerIcon = (player, { symbolic = true, ...params } = {}) => {
|
||||
|
|
BIN
nixos/flake.lock
BIN
nixos/flake.lock
Binary file not shown.
Loading…
Reference in a new issue