From 8fedf45bdce537aa53cad815024a0721b5538389 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Fri, 1 Jan 2021 16:02:28 -0300 Subject: Added music and BTC modules to polybar --- .config/polybar/music | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 .config/polybar/music (limited to '.config/polybar/music') diff --git a/.config/polybar/music b/.config/polybar/music new file mode 100755 index 00000000..40a028f6 --- /dev/null +++ b/.config/polybar/music @@ -0,0 +1,15 @@ +#!/bin/bash + +player_status=$(playerctl status 2> /dev/null) +if [[ $? -eq 0 ]]; then + metadata=$(echo "$(playerctl metadata title) - $(playerctl metadata artist) - $(playerctl metadata album)" | cut -c -80) +fi + +# Foreground color formatting tags are optional +if [[ $player_status = "Playing" ]]; then + echo "%{F#FFFFFF}▶️ $metadata%{F-}" +elif [[ $player_status = "Paused" ]]; then + echo "%{F#999}⏸️ $metadata%{F-}" +else + echo "" +fi -- cgit v1.2.3