11 lines
274 B
Bash
Executable file
11 lines
274 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$(playerctl --list-all | wc -l)" -lt 2 ]
|
|
then
|
|
playerctl play-pause
|
|
else
|
|
playerctl --list-all | \
|
|
xargs -I _ playerctl --player _ metadata --format '_ - {{title}}' | \
|
|
wofi --dmenu | awk '{print $1}' | \
|
|
xargs -I _ playerctl --player _ play-pause
|
|
fi
|