13 lines
149 B
Bash
Executable file
13 lines
149 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
export QT_QPA_PLATFORMTHEME='qt5ct'
|
|
|
|
function run {
|
|
if ! pgrep -f $1 ;
|
|
then
|
|
$@&
|
|
fi
|
|
}
|
|
|
|
run jellyfin-mpv-shim
|