commit 2a9a0f7cebcd9af44327dc62ccff7fd1657df943
parent 1e23c3886b976032926e989ec543dcd38c2e6a55
Author: Sven Möller <sven-moeller@outlook.de>
Date: Tue, 11 Jan 2022 15:30:50 +0100
Use tmux instead of screen
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bash/.profile b/bash/.profile
@@ -13,5 +13,5 @@ git -C ~/.dotfiles pull
if [ -z "$DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then
startx
elif [ -z "$STY" ] && [ -z "$TMUX" ] && [ "$(uname -o)" != "Android" ]; then
- screen -dRR && exit
+ tmux new -AD && exit
fi