summaryrefslogtreecommitdiff
path: root/scripts/selectopt
diff options
context:
space:
mode:
authormarcellus <msimon_fr@hotmail.com>2023-05-04 19:38:38 +0200
committermarcellus <msimon_fr@hotmail.com>2023-05-04 19:38:38 +0200
commit8ce30a9db3677de3f90c3f404bb6c93a4f64936a (patch)
treec38f4b80e6b2cbe0d10e742cb8b0ce8c1d795eb5 /scripts/selectopt
parent13535011bb12163a4f9035cf2f231e856565e950 (diff)
feat: added script to select either music or musiccmd depending on whether mpv is already running or not
Diffstat (limited to 'scripts/selectopt')
-rwxr-xr-xscripts/selectopt5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/selectopt b/scripts/selectopt
new file mode 100755
index 0000000..eff605f
--- /dev/null
+++ b/scripts/selectopt
@@ -0,0 +1,5 @@
+# !/bin/sh
+# a script to select whether music or musiccmd should be called,
+# depending on whether mpv is already running or not
+
+pidof mpv >/dev/null && musiccmd || music \ No newline at end of file