documentation

This commit is contained in:
Nox Sluijtman 2024-09-22 10:46:12 +02:00
parent b6afb44256
commit 74fab844a8
Signed by: Egg
SSH key fingerprint: SHA256:2sG9X3C7Xvq2svGumz1/k7cm8l4G9+qAtAeugqB4J9M

View file

@ -6,73 +6,102 @@ let config = if ($configPath | path exists) { open $configPath }
let mpdHost = $config.noise.host? | default 'localhost:6600'
let current = mpc --host $mpdHost current
def notify [message: string] {
do { mpc --host $mpdHost -f "%file%" current | xargs -I{} mpc --host $mpdHost albumart {} } | save -f /tmp/mpc_current.png
notify-send "Noise" $"($message)" -i /tmp/mpc_current.png
def notify [message: string, display_icon:bool] {
match $display_icon {
true => {
do { mpc --host $mpdHost -f "%file%" current | xargs -I{} mpc --host $mpdHost albumart {} } | save -f /tmp/mpc_current.png
notify-send "Noise" $"($message)" -i /tmp/mpc_current.png
}
false => {
notify-send "Noise" $"($message)"
}
}
}
# Displays the currently playing song
def main [] {
mpc --host $mpdHost
notify $current
def main [--no-icon(-n) # Disables icon in notification
] {
mpc --host $mpdHost
notify $current (not $no_icon)
}
# Lists currently playing son
# Displays the currently playing song and only the current song
def "main current" [--no-icon(-n) # Disables icon in notification
] {
mpc --host $mpdHost current
notify $current (not $no_icon)
}
# Lists currently playing song
def "main tail" [] {
while true { mpc --host $mpdHost idle player | ignore; mpc --host partitacastellum current}
while true { mpc --host $mpdHost idle player | ignore; mpc --host partitacastellum current}
}
# Skips to next song
def "main next" [] {
mpc --host $mpdHost next
notify $"Switching to:\n($current)"
def "main next" [--no-icon(-n) # Disables icon in notification
] {
mpc --host $mpdHost next
notify $"Switching to:\n($current)" (not $no_icon)
}
# Moves back a song in the que
def "main prev" [] {
mpc --host $mpdHost prev
notify $"Switching to:\n($current)"
def "main prev" [--no-icon(-n) # Disables icon in notification
] {
mpc --host $mpdHost prev
notify $"Switching to:\n($current)" (not $no_icon)
}
# Shuffles the current que
def "main shuffle" [] {
mpc --host $mpdHost shuffle
notify $"Shuffling que..."
def "main shuffle" [--no-icon(-n) # Disables icon in notification
] {
mpc --host $mpdHost shuffle
notify $"Shuffling que..." (not $no_icon)
}
# Stops playing the current que
def "main stop" [] {
mpc --host $mpdHost stop
notify $"Stopping playback of:\n(mpc --host $mpdHost toggle)"
def "main stop" [--no-icon(-n) # Disables icon in notification
] {
mpc --host $mpdHost stop
notify $"Stopping playback of:\n(mpc --host $mpdHost toggle)" (not $no_icon)
}
# Starts playing the current que
def "main start" [] {
mpc --host $mpdHost start
notify $"Starting playback of:\n(mpc --host $mpdHost toggle)"
def "main start" [--no-icon(-n) # Disables icon in notification
] {
mpc --host $mpdHost start
notify $"Starting playback of:\n(mpc --host $mpdHost toggle)" (not $no_icon)
}
# Toggles playback of the current que
def "main toggle" [] {
mpc --host $mpdHost toggle
notify $"Toggling playback of:\n($current)"
def "main toggle" [--no-icon(-n) # Disables icon in notification
] {
mpc --host $mpdHost toggle
notify $"Toggling playback of:\n($current)" (not $no_icon)
}
def "main search" [...query: string] {
mpc --host $mpdHost search any $"(echo ...$query | str join ' ')"
# Searches 'mpd' database querying all fields by default
def "main search" [--field(-f): string=any # Field to query
, ...query: string # Search query
] {
mpc --host $mpdHost search ($field) $"(echo ...$query | str join ' ')"
}
# Insert uri after currently playing song
def "main insert" [] {
$in | mpc insert --host $mpdHost
$in | mpc insert --host $mpdHost
}
# Adds uri to the end of current que
def "main add" [] {
$in | mpc add --host $mpdHost
$in | mpc add --host $mpdHost
}
def "main crossfade" [ time?: int ] {
match ($time | is-empty) {
true => { mpc --host $mpdHost crossfade }
false => { mpc --host $mpdHost crossfade $time }
}
# Direct wrapper around 'mpc crossfade'
def "main crossfade" [ time?: int # Time in seconds
] {
match ($time | is-empty) {
true => { mpc --host $mpdHost crossfade }
false => { mpc --host $mpdHost crossfade $time }
}
}