2015-01-07 10:23:21 -05:00
|
|
|
#!/bin/sh
|
2011-08-13 02:34:16 +00:00
|
|
|
|
|
|
|
welcomeURL="\
|
2018-08-20 20:58:06 -04:00
|
|
|
https://www.haiku-os.org/docs/welcome/welcome_en.html"
|
2011-08-13 02:34:16 +00:00
|
|
|
welcomeDir=/boot/system/documentation/welcome/
|
|
|
|
welcomeFile=$welcomeDir/welcome_en.html
|
|
|
|
localizedWelcomeFile=$welcomeDir/welcome_"$LANG".html
|
|
|
|
|
|
|
|
if [ -f $localizedWelcomeFile ]; then
|
|
|
|
open file://$localizedWelcomeFile
|
|
|
|
elif [ -f $welcomeFile ]; then
|
|
|
|
open $welcomeFile
|
|
|
|
else
|
|
|
|
open $welcomeURL
|
|
|
|
fi
|
|
|
|
|