15 lines
275 B
Bash
15 lines
275 B
Bash
# ~/.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
|
|
|
|
|
|
|