Set umask to 022 if it's not set already

This commit is contained in:
Danielle McLean 2016-10-08 01:38:34 +11:00
parent d35dcd9699
commit 141e5de8ce
No known key found for this signature in database
GPG key ID: CC91589719027E94

2
config/zsh/login/umask Normal file
View file

@ -0,0 +1,2 @@
#! zsh
(( $(umask) == 0 )) && umask 022