blob: 5f5d5c68d97203a7192b808c71d67725ed4ff2bd (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/bash
set -e
[ -n "$DEBUG" ] && set -x
playerctl -sF metadata -f '"{{artist}}","{{album}}","{{title}}","{{duration(position)}}","{{playerName}}","{{lc(status)}}"' | awk -F',' -f "${HOME}/.config/waybar/modules/mpris.awk"
|