15 lines
237 B
Bash
Executable file
15 lines
237 B
Bash
Executable file
#!/bin/sh -xe
|
|
|
|
# cd to home
|
|
cd
|
|
|
|
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
|
|
exec dbus-launch --exit-with-session "$0" "$@"
|
|
fi
|
|
|
|
if [ -z "$SSH_AGENT_PID" ]; then
|
|
exec ssh-agent "$0" "$@"
|
|
fi
|
|
|
|
# Execution
|
|
exec /usr/bin/Hyprland "$@"
|