You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.2 KiB

2 years ago
#! /bin/sh
# ~/.xprofile: execute commands at the beginning of the X user
# session - before the window manager is started.
#
# The xprofile files are natively sourced by the following
# display managers:
#
# GDM - /etc/gdm/Xsession
# LightDM - /etc/lightdm/Xsession
# LXDM - /etc/lxdm/Xsession
# SDDM - /usr/share/sddm/scripts/Xsession
#
# More in https://wiki.archlinux.org/index.php/Autostarting
# use kavantum via gt5ct to style qt apps
2 years ago
export QT_QPA_PLATFORMTHEME=qt5ct
# include the Scripts dir into PATH
2 years ago
export PATH="$HOME/Scripts:$PATH"
# forces 1080p resultion before session inits via xfce4-session
2 years ago
xrandr -s 1920x1080
# execute this stuff only one time
2 years ago
scriptExecutedOne=$(cat $HOME/.xprofile | tail -n 1)
if [ "$scriptExecutedOne" != "#scriptExecuted" ]; then
# execute script to replace the user and hostname in some config files
2 years ago
sh $HOME/Scripts/renameHomeDirInConfigs.sh
# set dark theme for gkt4 apps, userspace
gsettings set org.gnome.desktop.interface color-scheme prefer-dark
# writes #scriptExecuted at the end of this files
2 years ago
echo "#scriptExecuted" >> $HOME/.xprofile
fi
# workaround compiz issue half vblank refresh rate
export vblank_mode=0
/usr/bin/compiz --replace &
unset vblank_mode