]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - shell/logout
shell: set GOTOOLCHAIN=local
[config/dotfiles.git] / shell / logout
diff --git a/shell/logout b/shell/logout
deleted file mode 100644 (file)
index 10affa1..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-# Shell logout file usable by all shells.
-
-
-# When leaving the console clear the screen to increase privacy. Taken from
-# Debian default bash files and modified. Thanks.
-if [ "$SHLVL" = 1 ]; then
-    if [ -x /usr/bin/clear_console ]; then
-        /usr/bin/clear_console -q
-    else
-        clear
-    fi
-fi
-
-# Make sure sudo rights are removed.
-sudo -k > /dev/null 2>&1
-
-# vim: ft=sh