This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
title=$(playerctl metadata --format "{{ title }}") | |
artist=$(playerctl metadata --format "{{ artist }}") | |
album=$(playerctl metadata --format "{{ album }}") | |
art=$(playerctl metadata --format "{{ mpris:artUrl }}") | |
position=$(playerctl position --format "{{ duration(position) }}") | |
length=$(playerctl metadata --format "{{ duration(mpris:length) }}") |