From 141e5de8ce965ad1c1750ee303212e0e99ca8e62 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Sat, 8 Oct 2016 01:38:34 +1100 Subject: [PATCH] Set umask to 022 if it's not set already --- config/zsh/login/umask | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 config/zsh/login/umask diff --git a/config/zsh/login/umask b/config/zsh/login/umask new file mode 100644 index 0000000..e1d6eab --- /dev/null +++ b/config/zsh/login/umask @@ -0,0 +1,2 @@ +#! zsh +(( $(umask) == 0 )) && umask 022