xref: /haiku/data/config/boot/UserBootscript (revision b671e9bbdbd10268a042b4f4cc4317ccd03d105e)
1#!/bin/sh
2
3# DO NOT EDIT!
4#=====================================================================
5# Start programs and open files in the boot launch folder
6for file in $HOME/config/boot/launch/*
7do
8	/bin/open "$file" &
9done
10#=====================================================================
11# FEEL FREE TO EDIT BELOW
12
13# Add custom commands to execute at every startup here.
14
15# This file is a standard bash script. For more information regarding shell
16# scripts, refer to any online documentation for "bash scripting"
17
18# During boot, the commands listed in this script will be executed.
19# Typically, you will want to include a trailing '&' on each line.
20# This will allow the script to execute that command and process the next line.
21
22# To launch certain applications at boot-up, put links to those applications in
23# the above boot launch directory.
24
25