2024-06-02 17:16:50 +02:00
|
|
|
#!/bin/bash
|
2024-06-03 19:56:05 +02:00
|
|
|
cd ${HOME}/.config/hypr
|
|
|
|
# This script will be executed on every Hyprland startup
|
2024-06-02 17:16:50 +02:00
|
|
|
|
|
|
|
# Programs here
|
2024-06-03 19:56:05 +02:00
|
|
|
# Append ' &' to all of them or this script won't work
|
2024-06-02 20:49:11 +02:00
|
|
|
|
|
|
|
# Bitfocus Companion
|
|
|
|
# Useful if you have an Elgato Streamdeck
|
2024-06-02 17:16:50 +02:00
|
|
|
companion &
|
|
|
|
|
|
|
|
# Wait for all tasks to finish
|
|
|
|
# Do not remove this.
|
|
|
|
wait
|