tmux-gspot/scripts/get_now_playing.sh
jjohnstondev 47b1fb41e9 initial
2023-01-19 17:54:30 -08:00

15 lines
178 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
song="$(gospt nowplaying)"
if [[ $song =~ ['⏸'] ]]; then
echo$song | sed 's/[⏸▶]//g'
else
echo $song | sed 's/[⏸▶]//g'
fi