6 lines
189 B
Bash
6 lines
189 B
Bash
#!/bin/bash
|
|
|
|
artist=$(playerctl --player Feishin metadata artist)
|
|
title=$(playerctl --player Feishin metadata title)
|
|
|
|
printf '{"text":'"\" ${title} by ${artist}\""',"class":"enabled"}';
|