.xinitrc: Add magic skip file

This commit is contained in:
Salt 2020-09-03 18:41:08 -05:00
parent 87f147d0ab
commit 0a79c29609
1 changed files with 4 additions and 0 deletions

View File

@ -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"