💬 Update 'mpv' command description

This commit is contained in:
KaKi87 2024-01-28 03:18:32 +01:00
parent e99a91e336
commit 165d095185

View file

@ -104,7 +104,7 @@ const
.action(() => adb('monkey -p com.spotify.music 1'));
program
.command('mpv')
.description('Launch MPV')
.description('Play media on MPV')
.argument('<url>', 'Media URL')
.action(url => adb(`am start -a android.intent.action.VIEW -d ${url} -t video/any is.xyz.mpv`));
program