haiku/data/config/boot/UserBootscript
Ryan Leavengood fa3f8dcf9f 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
2009-08-20 20:10:31 +00:00

29 lines
905 B
Bash

#!/bin/sh
# DO NOT EDIT!
#=====================================================================
# Start programs and open files in the boot launch folder
for file in $HOME/config/boot/launch/*
do
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.
# This file is a standard bash script. For more information regarding shell
# scripts, refer to any online documentation for "bash scripting"
# During boot, the commands listed in this script will be executed.
# Typically, you will want to include a trailing '&' on each line.
# This will allow the script to execute that command and process the next line.
# To launch certain applications at boot-up, put links to those applications in
# the above boot launch directory.