Add startup script for launching Hyprland
This commit is contained in:
parent
4de0c6bcab
commit
661b3b231c
|
@ -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 "$@"
|
||||
|
Loading…
Reference in New Issue