mirror of
http://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2024-11-05 05:43:13 +00:00
switchable instance feature added
This commit is contained in:
parent
ae6dd9f069
commit
d4d5a17268
|
@ -34,16 +34,22 @@ load_tracks_to_playlist()
|
|||
done
|
||||
}
|
||||
|
||||
funkwhale_api_get_tracks 1 1>> /dev/null
|
||||
echo "Tracks avalaible on $instance: $count_all_tracks\n"
|
||||
get_all_avalaible_count_tracks()
|
||||
{
|
||||
funkwhale_api_get_tracks 1 1>> /dev/null
|
||||
echo "Tracks avalaible on $instance: $count_all_tracks\n"
|
||||
}
|
||||
|
||||
get_all_avalaible_count_tracks
|
||||
|
||||
downloadtrackspls='Download tracks in playlist'
|
||||
startplayer='Start player'
|
||||
changepod='Switch instance'
|
||||
checkapilimits='Check API limits (debug)'
|
||||
Exit='Exit'
|
||||
|
||||
while true; do
|
||||
choice=$(echo "$downloadtrackspls\n$startplayer\n$checkapilimits\n$Exit" | fzy)
|
||||
choice=$(echo "$downloadtrackspls\n$startplayer\n$checkapilimits\n$changepod\n$Exit" | fzy)
|
||||
|
||||
if [ "$choice" = "$downloadtrackspls" ]; then
|
||||
echo 'Enter page number: '
|
||||
|
@ -51,6 +57,12 @@ if [ "$choice" = "$downloadtrackspls" ]; then
|
|||
load_tracks_to_playlist $page
|
||||
elif [ "$choice" = "$startplayer" ]; then
|
||||
$default_player --no-vid --no-ytdl playlist.m3u8
|
||||
elif [ "$choice" = "$changepod" ]; then
|
||||
echo "Type instance (ex. $instance):"
|
||||
read instance
|
||||
export instance
|
||||
clear
|
||||
get_all_avalaible_count_tracks
|
||||
elif [ "$choice" = "$checkapilimits" ]; then
|
||||
funkwhale_api_check_api_limits | more
|
||||
elif [ "$choice" = "$Exit" ]; then
|
||||
|
|
Loading…
Reference in a new issue