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