blob: 8b0cf00785a6a96f1c1ce13a7d0f4ed7a351fd84 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
SABAYON_LOADER="/usr/bin/xdg-open"
SABAYON_URL=${SABAYON_URL:-http://www.rogentos.org?install_welcome=1}
# load Sabayon URL
[[ -x "${SABAYON_LOADER}" ]] && ${SABAYON_LOADER} ${SABAYON_URL} &
# remove myself from autostart
rm ~/.config/autostart/rogentos-welcome-loader.desktop -f
|