14 lines
300 B
Bash
Executable file
14 lines
300 B
Bash
Executable file
#!/bin/bash
|
|
cd ${HOME}/.config/hypr
|
|
# This script will be executed on every Hyprland startup
|
|
|
|
# Programs here
|
|
# Append ' &' to all of them or this script won't work
|
|
|
|
# Bitfocus Companion
|
|
# Useful if you have an Elgato Streamdeck
|
|
companion &
|
|
|
|
# Wait for all tasks to finish
|
|
# Do not remove this.
|
|
wait
|