From 80b17865245bb70dd99cbdfe89679a50faba4615 Mon Sep 17 00:00:00 2001 From: DuckDuckWhale Date: Wed, 29 Dec 2021 15:58:18 -0800 Subject: [PATCH] Bash: relax default umask to 007 --- bash/.bashrc.append | 2 +- permissions.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bash/.bashrc.append b/bash/.bashrc.append index bd72c79..6dd8adb 100644 --- a/bash/.bashrc.append +++ b/bash/.bashrc.append @@ -1,7 +1,7 @@ # customized -umask 077 +umask 007 export EDITOR='vim' export VISUAL='vim' diff --git a/permissions.sh b/permissions.sh index 5db5697..bad977d 100755 --- a/permissions.sh +++ b/permissions.sh @@ -1,2 +1,2 @@ #!/bin/sh -chmod go-rwx -R ~ +chmod o-rwx -R ~