From 7a8c336e6b2c6cc0381a69b7089d67cf803a5928 Mon Sep 17 00:00:00 2001 From: Augists Date: Fri, 14 Jan 2022 11:04:52 +0800 Subject: [PATCH] add networkQuality --- Readme.md | 1 + plugins/netquality | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100755 plugins/netquality diff --git a/Readme.md b/Readme.md index 0b684c8..27208e0 100644 --- a/Readme.md +++ b/Readme.md @@ -119,6 +119,7 @@ In this example, running `m itunes play` will play the current selected track in `itunes`
`localhost`
`lock`
+`netquality`
`network`
`nosleep`
`notification`
diff --git a/plugins/netquality b/plugins/netquality new file mode 100755 index 0000000..e05a9e4 --- /dev/null +++ b/plugins/netquality @@ -0,0 +1,17 @@ +#!/usr/bin/env bash + + +help(){ + cat<<__EOF__ + usage: m netquality +__EOF__ +} + +case $1 in + help) + help + ;; + *) + networkQuality + ;; +esac