From 0a79c296092928d11101a8695ee8f2c193ae389f Mon Sep 17 00:00:00 2001 From: Salt Date: Thu, 3 Sep 2020 18:41:08 -0500 Subject: [PATCH] .xinitrc: Add magic skip file --- .xinitrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.xinitrc b/.xinitrc index 0d5880ee..c81c545a 100755 --- a/.xinitrc +++ b/.xinitrc @@ -1,5 +1,9 @@ #!/bin/bash +# Straight up bail of we have a special file +if [ -f "$HOME/.skipxinit" ]; then + return +fi # Nest protection if [ -n "$FIRESTARTER" ]; then echo "Firestarter is already running in this session"