2023-10-24 11:24:43 +02:00
|
|
|
#!/bin/sh -xe
|
|
|
|
|
2023-10-24 11:45:10 +02:00
|
|
|
self="$(readlink -f "$0")"
|
2023-10-24 11:24:43 +02:00
|
|
|
cd
|
|
|
|
|
2023-10-22 00:11:38 +02:00
|
|
|
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
|
2023-10-24 11:45:10 +02:00
|
|
|
exec dbus-launch --exit-with-session "$self" "$@"
|
2023-10-22 00:11:38 +02:00
|
|
|
fi
|
|
|
|
|
2023-10-24 11:24:43 +02:00
|
|
|
if [ -z "$SSH_AGENT_PID" ]; then
|
2023-10-24 11:45:10 +02:00
|
|
|
exec ssh-agent "$self" "$@"
|
2023-10-24 11:24:43 +02:00
|
|
|
fi
|
|
|
|
|
2023-10-22 00:11:38 +02:00
|
|
|
xfwm4 &
|
2023-10-24 11:24:43 +02:00
|
|
|
artix-pipewire-launcher restart &
|
2023-10-22 00:12:22 +02:00
|
|
|
alacritty
|
2023-07-15 19:30:03 +02:00
|
|
|
wait
|