7 lines
151 B
Bash
Executable File
7 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
rating=$1
|
|
song_uri=$(mpc --format %file% current)
|
|
mpc sticker song "$song_uri" set rating "$rating"
|
|
echo "Rated '$song_uri' with $rating"
|
|
|