hardened malloc. networking + firewall. json based config.
This commit is contained in:
6
config/settings/skel/autorun.desktop
Normal file
6
config/settings/skel/autorun.desktop
Normal file
@@ -0,0 +1,6 @@
|
||||
[Desktop Entry]
|
||||
Name=Enable GNOME Extensions
|
||||
Exec=/usr/gnome_settings.sh
|
||||
Type=Application
|
||||
Hidden=false
|
||||
X-GNOME-Autostart-enabled=true
|
||||
5
config/settings/skel/bash_profile
Normal file
5
config/settings/skel/bash_profile
Normal file
@@ -0,0 +1,5 @@
|
||||
# ~/.bash_profile
|
||||
chsh -s /bin/bash
|
||||
if [ -f ~/.bashrc ]; then
|
||||
. ~/.bashrc
|
||||
fi
|
||||
8
config/settings/skel/bashrc
Normal file
8
config/settings/skel/bashrc
Normal file
@@ -0,0 +1,8 @@
|
||||
# ~/.bashrc
|
||||
|
||||
# Custom aliases
|
||||
alias la='ls -la'
|
||||
|
||||
|
||||
# Set a custom prompt
|
||||
PS1="[\u@\h \W]\$ "
|
||||
3
config/settings/skel/gnome_settings.sh
Normal file
3
config/settings/skel/gnome_settings.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
gnome-extensions enable ubuntu-appindicators@ubuntu.com
|
||||
gsettings set org.gnome.desktop.interface color-scheme prefer-dark
|
||||
14
config/settings/skel/profile
Normal file
14
config/settings/skel/profile
Normal file
@@ -0,0 +1,14 @@
|
||||
# ~/.profile
|
||||
|
||||
if [ -f ~/.bashrc ]; then
|
||||
. ~/.bashrc
|
||||
fi
|
||||
|
||||
if [ ! -f $HOME/.config/opensnitch/firstrun]; then
|
||||
mkdir -p $HOME/.config/opensnitch/
|
||||
cp /etc/opensnitchd/settings.conf $HOME/.config/opensnitch/settings.conf
|
||||
touch $HOME/.config/opensnitch/firstrun
|
||||
fi
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user