mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 05:01:14 -07:00
9 lines
265 B
Bash
Executable file
9 lines
265 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
dialogText=`osascript -e 'set dialogText to button returned of (display dialog "Installation complete. Start Tautulli?" buttons {"Start", "Close"})'`;
|
|
if [[ $dialogText == 'Start' ]]
|
|
then
|
|
open /Applications/Tautulli.app
|
|
else
|
|
exit 0;
|
|
fi
|