2023-04-13 00:17:43 +02:00
|
|
|
#!/bin/sh -xe
|
|
|
|
|
|
|
|
# cd to home
|
|
|
|
cd
|
|
|
|
|
2023-10-12 11:23:20 +02:00
|
|
|
# XDG
|
|
|
|
export XDG_CONFIG_HOME="${HOME}/.config"
|
|
|
|
|
2023-04-13 00:17:43 +02:00
|
|
|
# Execution
|
2023-06-28 14:15:17 +02:00
|
|
|
exec ssh-agent \
|
2023-04-16 23:11:57 +02:00
|
|
|
dbus-launch --exit-with-session \
|
2023-06-28 14:15:17 +02:00
|
|
|
/usr/bin/Hyprland \
|
|
|
|
"$@"
|
2023-04-13 00:17:43 +02:00
|
|
|
|