Files
dotfiles/profile/.profile.d/sway-startup.sh
2025-07-15 22:01:47 +02:00

10 lines
179 B
Bash
Executable File

#!/usr/bin/env bash
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then
if [ -n "$DBUS_SESSION_BUS_ADDRESS" ]; then
exec sway
else
exec dbus-launch sway
fi
fi