]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - setup.sh
screenrc: Lock screen after 10 minutes of inactivity for root.
[config/dotfiles.git] / setup.sh
index 761e4bc2408a96f274776b72cfdccd478dbaaba0..e9727dc91361e8cf75fca5cf4da60cdec9090ee3 100755 (executable)
--- a/setup.sh
+++ b/setup.sh
@@ -19,6 +19,13 @@ if [ $hostname != asp -a $hostname != systemofadown ]; then
          s/screen-256color/screen/' screenrc > screenrc.tmp
     mv screenrc.tmp screenrc
 fi
+# Some options are only necessary when running as root. They are marked as
+# "(ROOT)".
+if [ x`id -u` != x0 ]; then
+    echo screenrc: removing root options
+    grep -v '(ROOT)' screenrc > screenrc.tmp
+    mv screenrc.tmp screenrc
+fi
 # I use some features of screen which are only in Git. Drop them on machines
 # which have older versions. They are marked as "(GIT)".
 if [ $hostname != asp ]; then