diff --git a/startup.bash b/startup.bash new file mode 100755 index 0000000..fc2f218 --- /dev/null +++ b/startup.bash @@ -0,0 +1,17 @@ +#!/usr/bin/env bash + +# Best practice options +set -o errexit +set -o nounset +set -o pipefail +if [[ "${TRACE-0}" == "1" ]]; then set -o xtrace; fi + +cd "$(dirname "$0")" + +main() { + keyctl link @us @s + Hyprland +} + +main "$@" +