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