16 lines
251 B
Bash
Executable file
16 lines
251 B
Bash
Executable file
#!/bin/sh -xe
|
|
|
|
cd
|
|
|
|
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
|
|
exec dbus-launch --exit-with-session ssh-agent "$0" "$@"
|
|
fi
|
|
|
|
if [ -z "$SSH_AGENT_PID" ]; then
|
|
exec ssh-agent "$0" "$@"
|
|
fi
|
|
|
|
xfwm4 &
|
|
artix-pipewire-launcher restart &
|
|
alacritty
|
|
wait
|