fix: sway config, bin/{epitest,wine,virt}...

This commit is contained in:
AngeD 2023-03-06 07:49:40 +01:00
parent ab196ca49e
commit dbf9c6a329
17 changed files with 40 additions and 13 deletions

View file

@ -1,3 +1,6 @@
#!/bin/sh
[ "$XDG_VTNR" = 1 ] && exec startx > "$HOME/.gui.log" 2>&1
[ "$XDG_VTNR" = 1 ] && select SESSION in startx sway; do
[ "$SESSION" = sway ] && export XDG_CURRENT_DESKTOP=sway
exec $SESSION > "$HOME/.gui.log" 2>&1
done