mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
8 lines
147 B
Bash
8 lines
147 B
Bash
# Start Sway on login
|
|
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then
|
|
# Start Sway in the background
|
|
exec sway
|
|
fi
|
|
|
|
source ~/.bashrc
|
|
|