diff options
Diffstat (limited to 'usr/bin')
-rwxr-xr-x | usr/bin/mageiawelcome | 8 | ||||
-rwxr-xr-x | usr/bin/mageiawelcome-launcher | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/usr/bin/mageiawelcome b/usr/bin/mageiawelcome new file mode 100755 index 0000000..d36db20 --- /dev/null +++ b/usr/bin/mageiawelcome @@ -0,0 +1,8 @@ +#!/usr/bin/python + +import os + +os.system("python /usr/lib/mageiawelcome/mageiawelcome.py") + + + diff --git a/usr/bin/mageiawelcome-launcher b/usr/bin/mageiawelcome-launcher new file mode 100755 index 0000000..4df3f06 --- /dev/null +++ b/usr/bin/mageiawelcome-launcher @@ -0,0 +1,8 @@ +#!/usr/bin/python + +import os +from user import home + +if (not os.path.exists(home + "/.mageiawelcome/norun.flag")) and (not os.path.exists("/usr/sbin/draklive-install")): + os.system("mageiawelcome") + |