19 lines
332 B
Bash
19 lines
332 B
Bash
|
#!/bin/bash
|
||
|
cd ${HOME}/.config/hypr
|
||
|
# This script will be executed on every Hyprland configuration reload & startup
|
||
|
|
||
|
# Programs here
|
||
|
# Append ' &' to all of them or this script won't work
|
||
|
|
||
|
# hyprpaper
|
||
|
pkill -9 hyprpaper
|
||
|
hyprpaper &
|
||
|
|
||
|
# hypridle
|
||
|
pkill -9 hypridle
|
||
|
hypridle &
|
||
|
|
||
|
# Wait for all tasks to finish
|
||
|
# Do not remove this.
|
||
|
wait
|