Skip to content

Instantly share code, notes, and snippets.

View mateiash's full-sized avatar
😭
I dont know nothing

David Andrei Mateiș mateiash

😭
I dont know nothing
View GitHub Profile
@mateiash
mateiash / nowplaying.sh
Last active September 29, 2025 08:25
Now playing notification bash script
#!/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) }}")