mirror of
https://github.com/tommytran732/Linux-Setup-Scripts
synced 2024-11-12 13:01:33 -05:00
15 lines
607 B
Bash
15 lines
607 B
Bash
#!/bin/bash
|
|
|
|
#Please note that this is how I PERSONALLY setup my computer - I do some stuff such as not using anything to download GNOME extensions from extensions.gnome.org and installing the extensions as a package instead
|
|
#Customize it to your liking
|
|
#Run this script as your admin user, NOT root
|
|
|
|
#Setting umask to 077
|
|
umask 077
|
|
sudo sed -ie '/^DIR_MODE=/ s/=[0-9]*\+/=0700/' /etc/adduser.conf
|
|
sudo sed -ie '/^UMASK\s\+/ s/022/077/' /etc/login.defs
|
|
sudo sed -i 's/USERGROUPS_ENAB yes/USERGROUPS_ENAB no/g' /etc/login.defs
|
|
echo "umask 077" | sudo tee --append /etc/profile
|
|
|
|
apt purge -y gnome-calculator
|