13 lines
244 B
Text
Executable file
13 lines
244 B
Text
Executable file
#!/usr/bin/env sh
|
|
cd || exit
|
|
|
|
[ -z "$DBUS_SESSION_BUS_ADDRESS" ] && \
|
|
exec dbus-launch --exit-with-session -- "$0" "$@"
|
|
|
|
[ -z "$SSH_AGENT_PID" ] && \
|
|
exec ssh-agent -- "$0" "$@"
|
|
|
|
xfwm4 &
|
|
artix-pipewire-launcher restart &
|
|
alacritty
|
|
wait
|