aboutsummaryrefslogtreecommitdiffstats
path: root/.zlogout
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2017-03-29 12:19:47 +0200
committerDavid Runge <dave@sleepmap.de>2017-03-29 12:19:47 +0200
commitc6f775db8367d69f84435677d495d3f1eac2a13e (patch)
tree3631a3ce642e8a9204b04952ba9f6c4f49c24670 /.zlogout
parent76baf6127fb7172851b8bb6ebdf50c42988bf92a (diff)
parent3d701d70a7cd4c9af6fb5b8390fc6b2ca589670a (diff)
downloaddotfiles-c6f775db8367d69f84435677d495d3f1eac2a13e.tar.gz
dotfiles-c6f775db8367d69f84435677d495d3f1eac2a13e.tar.bz2
dotfiles-c6f775db8367d69f84435677d495d3f1eac2a13e.tar.xz
dotfiles-c6f775db8367d69f84435677d495d3f1eac2a13e.zip
Merge branch 'master' of sleepmap.de:config/dotfiles
* 'master' of sleepmap.de:config/dotfiles: .config/user-dirs.dirs: Updating XDG folders to new cloud location. .zlogout: Fixing broken statement, by doing binary comparison.
Diffstat (limited to '.zlogout')
-rw-r--r--.zlogout3
1 files changed, 2 insertions, 1 deletions
diff --git a/.zlogout b/.zlogout
index 5b5bf1c..307314b 100644
--- a/.zlogout
+++ b/.zlogout
@@ -1,6 +1,7 @@
#
# Commands executed by zsh on logout.
#
-if [ $(id -u) == 0 ]; then
+
+if [ $(id -u) -eq 0 ]; then
clear
fi