Scripts/startup.bash

19 lines
214 B
Bash
Executable File

#!/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
main() {
keyctl link @us @s
Hyprland
}
pushd ~
main "$@"
popd