mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-27 02:25:15 +01:00
12 lines
231 B
Fish
12 lines
231 B
Fish
# Autostart sway when user login on tty1
|
|
|
|
set -x XDG_CURRENT_DESKTOP 'Unity' # waybar workaround for tray
|
|
|
|
set TTY1 (tty)
|
|
|
|
if test -z "$DISPLAY"; and test $TTY1 = "/dev/tty1"
|
|
# Debug
|
|
#exec sway -d 2> ~/sway.log
|
|
exec sway
|
|
end
|