From 661b3b231ca06b1bc189e8bb889a589713b5bf19 Mon Sep 17 00:00:00 2001 From: Trevor Vallender Date: Tue, 13 Jun 2023 08:56:20 +0100 Subject: [PATCH] Add startup script for launching Hyprland --- startup.bash | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 startup.bash 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 "$@" +