8 lines
165 B
Bash
Executable File
8 lines
165 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
# media object
|
|
mObj=$1
|
|
|
|
# perform a meaningful task
|
|
notify-send -u normal "ffplayout" -t 2 -e "Play: $(echo $mObj | jq -r '.current_media.source')"
|