aboutsummaryrefslogtreecommitdiff
path: root/.config/polybar/media.sh
blob: 38f8d5544db126a493b196ab21ec6f94d1cd38db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

status=$(playerctl status)
title=$(playerctl metadata title)
artist=$(playerctl metadata artist)

if [ $status = "Playing" ]
then
  echo "󰐊 $title - $artist"
elif [ $status = "Paused" ]
then
  echo "󰏤 $title - $artist"
fi