mirror of
https://github.com/Tautulli/Tautulli.git
synced 2024-11-21 04:50:36 -08:00
10 lines
265 B
Bash
Executable File
10 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
|