Scripts/startup.bash

18 lines
222 B
Bash
Raw Normal View History

#!/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 "$@"