bash: tmux azuto-attach not for root

This commit is contained in:
Michael Grote 2023-11-24 14:31:20 +01:00
parent 39f988fc44
commit 7051ef7d96
1 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,11 @@
#!/bin/bash
### tmux auto attach
if command -v tmux &> /dev/null && [ -z "$TMUX" ]; then
tmux attach -t default || tmux new -s default
# Check if the user ID is not 0 (root)
if [ "$EUID" -ne 0 ]; then
if command -v tmux &> /dev/null && [ -z "$TMUX" ]; then
tmux attach -t default || tmux new -s default
fi
fi
### keychain