feat(ostree-images): import river template files from wayblue
This commit is contained in:
parent
3f8e44008c
commit
576311545e
60 changed files with 2169 additions and 0 deletions
16
ostree-images/river/files/system/hyprland/usr/bin/starthyprland
Executable file
16
ostree-images/river/files/system/hyprland/usr/bin/starthyprland
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Tell this script to exit if there are any errors.
|
||||
# You should have this in every custom script, to ensure that your completed
|
||||
# builds actually ran successfully without any errors!
|
||||
set -oue pipefail
|
||||
|
||||
|
||||
hyprland_conf="$HOME/.config/hypr/hyprland.conf"
|
||||
default_conf="/usr/share/hyprland/hyprland.conf"
|
||||
|
||||
if [ -f "$hyprland_conf" ]; then
|
||||
Hyprland -c "$hyprland_conf"
|
||||
else
|
||||
Hyprland -c "$default_conf"
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue