blob: 5f33f5e062acf629a4198425a1b5e1321225efc0 (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/bash
set -eo pipefail
[ -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"
|