Skip to content

Commit

Permalink
change umask to 0027
Browse files Browse the repository at this point in the history
  • Loading branch information
ochurlaud committed May 25, 2019
1 parent f2e7396 commit 362cc9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zsh/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'
CDPATH=.:~:~/git
PATH=$PATH:~/.local/bin

#I want my umask 0002 if I'm not root
#I want my umask 0027 if I'm not root
if [[ $(whoami) = root ]]; then
umask 0022
else
umask 0002
umask 0027
fi


Expand Down

0 comments on commit 362cc9d

Please sign in to comment.