aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_local/bin/executable_tokodi
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-04-21 01:24:36 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-04-21 01:24:36 +0100
commit2b0930fbdea2565e01f451843dddeceef8e9cd42 (patch)
tree29e03c038580d92943ce3977461d4b92d45fe852 /dot_local/bin/executable_tokodi
parent4260b23f59752ca9e88161f649285da3cce82982 (diff)
downloaddotfiles-2b0930fbdea2565e01f451843dddeceef8e9cd42.tar.gz
dotfiles-2b0930fbdea2565e01f451843dddeceef8e9cd42.tar.bz2
dotfiles-2b0930fbdea2565e01f451843dddeceef8e9cd42.zip
style(shell): apply shfmt (-i 2 -ci -s)
Diffstat (limited to 'dot_local/bin/executable_tokodi')
-rwxr-xr-xdot_local/bin/executable_tokodi18
1 files changed, 9 insertions, 9 deletions
diff --git a/dot_local/bin/executable_tokodi b/dot_local/bin/executable_tokodi
index ce945de..aec226c 100755
--- a/dot_local/bin/executable_tokodi
+++ b/dot_local/bin/executable_tokodi
@@ -1,20 +1,20 @@
#!/usr/bin/env sh
if [ -z "$1" ]; then
- url=$(wl-paste)
+ url=$(wl-paste)
elif [ "$1" = "-" ]; then
- read -r url
+ read -r url
else
- url="$1"
+ url="$1"
fi
case "$url" in
-*.m3u8*)
- prefix=''
- ;;
-*)
- prefix='plugin://plugin.video.sendtokodi/?'
- ;;
+ *.m3u8*)
+ prefix=''
+ ;;
+ *)
+ prefix='plugin://plugin.video.sendtokodi/?'
+ ;;
esac
payload="$(printf '{"jsonrpc":"2.0", "id": 1, "method":"Player.Open","params": {"item": {"file":"%s%s"}}}' "$prefix" "$url")"