From 9b48fc991c28ee9608b3eac9843a9544702ef020 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Mon, 25 Nov 2019 12:18:31 -0500 Subject: [PATCH] Fixed inverted logic. --- zsh/modules/tmux/init.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/modules/tmux/init.zsh b/zsh/modules/tmux/init.zsh index 7aabe74..30f6d23 100644 --- a/zsh/modules/tmux/init.zsh +++ b/zsh/modules/tmux/init.zsh @@ -6,7 +6,7 @@ if (( ! $+commands[tmux] )); then fi # If running as root, stop and return. -if [ "$EUID" -ne 0 ] ; then +if [ "$EUID" -eq 0 ] ; then return 0 fi