feat(ostree-images): import river template files from wayblue

This commit is contained in:
Alexander Navarro 2024-11-06 11:23:10 -03:00
parent 3f8e44008c
commit 576311545e
Signed by untrusted user who does not match committer: anavarro
GPG key ID: 6426043E9FA3E3B5
60 changed files with 2169 additions and 0 deletions

View 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
wayfire_conf="$HOME/.config/wayfire.ini"
default_conf="/usr/share/wayfire/wayfire.ini"
if [ -f "$wayfire_conf" ]; then
wayfire -c "$wayfire_conf"
else
wayfire -c "$default_conf"
fi