summaryrefslogtreecommitdiffstats
path: root/TOOLS/osxbundle/mpv.app/Contents/MacOS/mpv-wrapper.sh
blob: f84c27a6e2dca4a36f8ca9fb278e8ffc881fa1df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
export MPVBUNDLE="true"

# set the right args for the user specified standard shell
# to load the expected profiles and configs
args="-c"
case "$SHELL" in
    *bash) args="-l $args";;
    *zsh) args="-l -i $args";;
esac

cd "$(dirname "$0")"
$SHELL $args "./mpv --player-operation-mode=pseudo-gui"