16 lines
237 B
Bash
Executable file
16 lines
237 B
Bash
Executable file
#!/bin/bash
|
|
# Autostart script
|
|
|
|
# Programs here
|
|
# Append ' &' to all of them
|
|
|
|
# Hyprpaper
|
|
hyprpaper &
|
|
|
|
# Bitfocus Companion
|
|
# Useful if you have an Elgato Streamdeck
|
|
companion &
|
|
|
|
# Wait for all tasks to finish
|
|
# Do not remove this.
|
|
wait
|