nixos/homeConfig/dotfiles/bash/bash_profile

10 lines
267 B
Bash

# Start Sway on login
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then
# Start Sway in the background
exec sway
fi
if [ "$XDG_CURRENT_DESKTOP" = "sway" ] ; then
# https://github.com/swaywm/sway/issues/595
export _JAVA_AWT_WM_NONREPARENTING=1
fi