8 líneas
152 B
Bash
Archivo ejecutable
8 líneas
152 B
Bash
Archivo ejecutable
#!/bin/bash
|
|
|
|
status=$(quodlibet --status | cut -d' ' -f1)
|
|
case "$status" in
|
|
"playing") quodlibet --print-playing "<title~album>" ;;
|
|
*) ;;
|
|
esac
|
|
|