aboutsummaryrefslogtreecommitdiffstats
path: root/xorg-xinit/bash-aliases
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--xorg-xinit/bash-aliases9
1 files changed, 9 insertions, 0 deletions
diff --git a/xorg-xinit/bash-aliases b/xorg-xinit/bash-aliases
new file mode 100644
index 0000000..14b2000
--- /dev/null
+++ b/xorg-xinit/bash-aliases
@@ -0,0 +1,9 @@
+# -*- shell-script -*-
+
+if test "$TERM" = dumb; then
+ alias startx='printf '\''\e[1;31m%s\e[0m\n\c'\'' "Do not start an X session from a dumb terminal"; false'
+ alias xinit='printf '\''\e[1;31m%s\e[0m\n\c'\'' "Do not start an X session from a dumb terminal"; false'
+elif test ! "$TERM" = linux || test -n "$DISPLAY"; then
+ alias startx='printf '\''\e[1;31m%s\e[0m\n\c'\'' "Do not start an X session from within an X session"; false'
+ alias xinit='printf '\''\e[1;31m%s\e[0m\n\c'\'' "Do not start an X session from within an X session"; false'
+fi