Historically, I had a .xinitrc file that I used to launch all of the windowing environment stuff that I wanted. It was a complex and confusing shell script, and after 20 years, it was full of outdated cruft that tried to track what distributions now generally do for you. So, instead, I've taken over the stuff that truly is personal to me and put it into this xfce autostart script.
25 lines
419 B
Bash
Executable file
25 lines
419 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export PATH=$HOME/bin:$PATH
|
|
|
|
PUBLIC_CONFIG_PATH=$HOME/public-config
|
|
|
|
set -x
|
|
|
|
echo "I AM HERE IN THE STARTUP" >> $HOME/X_STARTUP_LOG
|
|
umask 077
|
|
|
|
PATH=$HOME/bin:$PATH
|
|
export PATH
|
|
|
|
if [ -f ~/.airplane-mode ]; then
|
|
# xrdb -merge FIXME
|
|
echo Bring over airplane mode!
|
|
else
|
|
xrdb -merge $HOME/public-config/x11-and-wayland/Xdefaults
|
|
fi
|
|
|
|
chmod 640 $HOME/.Xauthority
|
|
|
|
export GDK_USE_XFT=1
|
|
export QT_XFT=1
|