11 lines
271 B
Bash
11 lines
271 B
Bash
#export TZ=America/Chicago
|
|
if [[ "$(tty)" = "/dev/tty1" ]]
|
|
then
|
|
export XDG_SESSION_TYPE=wayland
|
|
export XDG_SESSION_DESKTOP=sway
|
|
export XDG_CURRENT_DESKTOP=sway
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
export NIXOS_OZONE_WL=1
|
|
systemd-cat --identifier=sway sway
|
|
exit
|
|
fi
|