10 lines
148 B
Bash
Executable file
10 lines
148 B
Bash
Executable file
#!/bin/bash
|
|
# Autostart script
|
|
|
|
# Programs here
|
|
# Append ' &' to all of them
|
|
companion &
|
|
|
|
# Wait for all tasks to finish
|
|
# Do not remove this.
|
|
wait
|