Patch by Matt Madia to add UserBootscript.sample and UserSetupEnvironment.sample
files in /boot/home/config/boot. Thanks! Though eventually I'd like to have a more intuitive method of adding start up applications. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29814 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Quick start file for UserBootscript. Copy or rename this file as
|
||||
# "/boot/home/config/boot/UserBootscript".
|
||||
# Add custom commands to execute at every startup.
|
||||
|
||||
# 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.
|
||||
|
||||
# Run LaunchBox
|
||||
# /boot/beos/apps/LaunchBox &
|
||||
@@ -0,0 +1,12 @@
|
||||
# Quick start for file UserSetupEnvironment. Copy or rename this file as
|
||||
# "/boot/home/config/boot/UserSetupEnvironment".
|
||||
# Add custom environment variables to initialize
|
||||
|
||||
# This file is a standard bash script. For more information regarding shell
|
||||
# scripts, refer to any online documentation for "bash scripting"
|
||||
|
||||
# set Pe as the default svn editor for entering commit logs.
|
||||
# export SVN_EDITOR=lpe
|
||||
|
||||
# Set important variables
|
||||
# export IS_COMPUTER_ON=1
|
||||
Reference in New Issue
Block a user