16 lines
281 B
Bash
Executable File
16 lines
281 B
Bash
Executable File
#!/usr/bin/env bash
|
|
music=$(playerctl metadata --format "{{title}}" 2>/dev/null)
|
|
|
|
max_length=15
|
|
|
|
if [ -z "$music" ]; then
|
|
echo ":: No playing ::"
|
|
else
|
|
if [ ${#music} -gt $max_length ]; then
|
|
echo "${music:0:$max_length}..."
|
|
else
|
|
echo "$music"
|
|
fi
|
|
fi
|
|
|