Launch executables and use /bin/open on everything else in the boot launch

directory. I think this should be good enough until we have session management.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32545 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ryan Leavengood 2009-08-20 20:10:31 +00:00
parent b6b0567fbd
commit fa3f8dcf9f

View File

@ -2,12 +2,17 @@
# DO NOT EDIT!
#=====================================================================
# Start all programs in the boot launch folder
for program in $HOME/config/boot/launch/*
# Start programs and open files in the boot launch folder
for file in $HOME/config/boot/launch/*
do
"$program" &
if [ -x "$file" ]; then
"$file" &
else
/bin/open "$file" &
fi
done
#=====================================================================
# FEEL FREE TO EDIT BELOW
# Add custom commands to execute at every startup here.