aboutsummaryrefslogtreecommitdiff
path: root/.config/polybar/media.sh
diff options
context:
space:
mode:
authorXander Swan <email>2025-12-03 10:00:41 -0500
committerXander Swan <email>2025-12-03 10:00:41 -0500
commit6d4208a39ba4a576c310a301eb576d84eec1ddaf (patch)
treebeef17e3d6e88f08b68673d3d3e394d19639cd78 /.config/polybar/media.sh
parentd0f041df4db23a512fa2d2a7c655af0b2c7e88c5 (diff)
Entirely new config
Diffstat (limited to '.config/polybar/media.sh')
-rw-r--r--.config/polybar/media.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/.config/polybar/media.sh b/.config/polybar/media.sh
deleted file mode 100644
index 38f8d55..0000000
--- a/.config/polybar/media.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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