|
|
@ -12,19 +12,26 @@ |
|
|
|
# |
|
|
|
# |
|
|
|
# More in https://wiki.archlinux.org/index.php/Autostarting |
|
|
|
# More in https://wiki.archlinux.org/index.php/Autostarting |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# use kavantum via gt5ct to style qt apps |
|
|
|
export QT_QPA_PLATFORMTHEME=qt5ct |
|
|
|
export QT_QPA_PLATFORMTHEME=qt5ct |
|
|
|
|
|
|
|
# include the Scripts dir into PATH |
|
|
|
export PATH="$HOME/Scripts:$PATH" |
|
|
|
export PATH="$HOME/Scripts:$PATH" |
|
|
|
|
|
|
|
# forces 1080p resultion before session inits via xfce4-session |
|
|
|
xrandr -s 1920x1080 |
|
|
|
xrandr -s 1920x1080 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# execute this stuff only one time |
|
|
|
scriptExecutedOne=$(cat $HOME/.xprofile | tail -n 1) |
|
|
|
scriptExecutedOne=$(cat $HOME/.xprofile | tail -n 1) |
|
|
|
if [ "$scriptExecutedOne" != "#scriptExecuted" ]; then |
|
|
|
if [ "$scriptExecutedOne" != "#scriptExecuted" ]; then |
|
|
|
|
|
|
|
# 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 |
|
|
|
|
|
|
|
gsettings set org.gnome.desktop.interface color-scheme prefer-dark |
|
|
|
|
|
|
|
# set dark theme for root user, u have to be in group wheel for this to work |
|
|
|
|
|
|
|
sudo dbus-launch gsettings set org.gnome.desktop.interface color-scheme prefer-dark 2&1> /dev/null |
|
|
|
|
|
|
|
# writes #scriptExecuted at the end of this files |
|
|
|
echo "#scriptExecuted" >> $HOME/.xprofile |
|
|
|
echo "#scriptExecuted" >> $HOME/.xprofile |
|
|
|
fi |
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
# set dark theme for gkt3 |
|
|
|
|
|
|
|
gsettings set org.gnome.desktop.interface color-scheme prefer-dark |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# workaround compiz issue half vblank refresh rate |
|
|
|
# workaround compiz issue half vblank refresh rate |
|
|
|
export vblank_mode=0 |
|
|
|
export vblank_mode=0 |
|
|
|
/usr/bin/compiz --replace & |
|
|
|
/usr/bin/compiz --replace & |
|
|
|