|
|
@ -18,13 +18,16 @@ export EDITOR=nano |
|
|
|
export GTK_THEME=Adwaita:dark |
|
|
|
export GTK_THEME=Adwaita:dark |
|
|
|
|
|
|
|
|
|
|
|
# execute this stuff only one time |
|
|
|
# execute this stuff only one time |
|
|
|
scriptExecutedOne=$(cat $HOME/.xprofile | tail -n 1) |
|
|
|
scriptExecutedOnce=$(cat $HOME/.xprofile | tail -n 1) |
|
|
|
if [ "$scriptExecutedOne" != "#scriptExecuted" ]; then |
|
|
|
if [ "$scriptExecutedOnce" != "#scriptExecuted" ]; then |
|
|
|
# execute script to replace the user and hostname in some config files |
|
|
|
# execute script to replace the user and hostname in some config files |
|
|
|
sh $HOME/Scripts/renameHomeDirInConfigs.sh |
|
|
|
sh $HOME/Scripts/renameHomeDirInConfigs.sh |
|
|
|
# set dark theme for gkt4 apps, userspace |
|
|
|
# set dark theme for gkt4 apps, userspace |
|
|
|
gsettings set org.gnome.desktop.interface color-scheme prefer-dark |
|
|
|
gsettings set org.gnome.desktop.interface color-scheme prefer-dark |
|
|
|
# writes #scriptExecuted at the end of this files |
|
|
|
# writes #scriptExecuted at the end of this files |
|
|
|
echo "#scriptExecuted" >> $HOME/.xprofile |
|
|
|
echo "#scriptExecuted" >> $HOME/.xprofile |
|
|
|
|
|
|
|
# make scripts executeable |
|
|
|
|
|
|
|
chmod +x $HOME/Scripts/* |
|
|
|
|
|
|
|
# force 1080p |
|
|
|
xrandr -s 1920x1080 |
|
|
|
xrandr -s 1920x1080 |
|
|
|
fi |
|
|
|
fi |
|
|
|