2009-08-20 23:21:18 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# DO NOT EDIT!
|
|
|
|
#=====================================================================
|
2009-08-21 00:10:31 +04:00
|
|
|
# Start programs and open files in the boot launch folder
|
|
|
|
for file in $HOME/config/boot/launch/*
|
2009-08-20 23:21:18 +04:00
|
|
|
do
|
2009-08-21 00:15:39 +04:00
|
|
|
/bin/open "$file" &
|
2009-08-20 23:21:18 +04:00
|
|
|
done
|
|
|
|
#=====================================================================
|
2009-08-21 00:10:31 +04:00
|
|
|
# FEEL FREE TO EDIT BELOW
|
2009-08-20 23:21:18 +04:00
|
|
|
|
|
|
|
# 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.
|
|
|
|
|