From 165d095185f4ef21746e95bcc61b4f3cc86b23f9 Mon Sep 17 00:00:00 2001 From: KaKi87 Date: Sun, 28 Jan 2024 03:18:32 +0100 Subject: [PATCH] :speech_balloon: Update 'mpv' command description --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index fa5ab5d..eca5afd 100644 --- a/main.js +++ b/main.js @@ -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('', 'Media URL') .action(url => adb(`am start -a android.intent.action.VIEW -d ${url} -t video/any is.xyz.mpv`)); program