7 lines
159 B
Bash
Executable file
7 lines
159 B
Bash
Executable file
#!/bin/bash
|
|
|
|
playerctl --follow metadata --format '{{ title }}' | {
|
|
while read -r nowplaying_title; do
|
|
echo "${nowplaying_title}" | head -c 50;
|
|
done
|
|
}
|