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