also allow arguments
This commit is contained in:
parent
decb091842
commit
2a0a46a042
|
@ -118,16 +118,18 @@ def "main search" [--field(-f): string=any # Field to query
|
||||||
|
|
||||||
# Insert uri after currently playing song
|
# Insert uri after currently playing song
|
||||||
def "main insert" [ --host(-H): string # mpd host
|
def "main insert" [ --host(-H): string # mpd host
|
||||||
|
, ...uri: string # URI to insert
|
||||||
] {
|
] {
|
||||||
let host = getHost $host
|
let host = getHost $host
|
||||||
$in | mpc insert --host $host
|
$in | mpc insert --host $host ($uri | str join " ")
|
||||||
}
|
}
|
||||||
|
|
||||||
# Adds uri to the end of current que
|
# Adds uri to the end of current que
|
||||||
def "main add" [ --host(-H): string # mpd host
|
def "main add" [ --host(-H): string # mpd host
|
||||||
|
, ...uri: string # URI to add
|
||||||
] {
|
] {
|
||||||
let host = getHost $host
|
let host = getHost $host
|
||||||
$in | mpc add --host $host
|
$in | mpc add --host $host ($uri | str join " ")
|
||||||
}
|
}
|
||||||
|
|
||||||
# Direct wrapper around 'mpc crossfade'
|
# Direct wrapper around 'mpc crossfade'
|
||||||
|
|
Loading…
Reference in a new issue