14 lines
172 B
Bash
Executable file
14 lines
172 B
Bash
Executable file
#!/bin/sh -xe
|
|
|
|
# cd to home
|
|
cd
|
|
|
|
# XDG
|
|
export XDG_CONFIG_HOME="${HOME}/.config"
|
|
|
|
# Execution
|
|
exec ssh-agent \
|
|
dbus-launch --exit-with-session \
|
|
hyprland \
|
|
"$@"
|
|
|