3 lines
128 B
Bash
Executable file
3 lines
128 B
Bash
Executable file
#!/bin/bash
|
|
INPUT=$(termux-dialog -t "Enter Spotify URL or song name" | jq -r '.text')
|
|
spotdl "$INPUT" --output ~/storage/music
|