vincentbernat.i3wm-configur.../dotfiles/xsession

47 lines
1.2 KiB
Text
Raw Normal View History

#!/bin/sh
exec < /dev/null
unset TERM
systemctl --user unset-environment TERM
# Ensure we use the appropriate gtkrc-2.0 file
export GTK2_RC_FILES=$HOME/.gtkrc-2.0
# We do not want to rely on crappy mailcap
export MAILCAPS=$HOME/.mailcap
# Make QT automatically scale according to screen DPI
export QT_AUTO_SCREEN_SCALE_FACTOR=1
export QT_QPA_PLATFORMTHEME=qt5ct
# GTK3 apps try to contact org.a11y.Bus. Disable that.
export NO_AT_BRIDGE=1
# Environment variables
. ~/.zshenv
export TERMINAL=vbeterm
# Copy some configuration files
while read source target; do
mkdir -p $(dirname $HOME/$target)
ln -nsf ~/.config/i3/dotfiles/$source $HOME/$target
done <<EOF
2021-07-04 18:25:28 +02:00
Xresources .Xresources
gtkrc-2.0 .gtkrc-2.0
gtk3.css .config/gtk-3.0/gtk.css
qt5ct.conf .config/qt5ct/qt5ct.conf
systemd .config/systemd/user
dunstrc .config/dunst/dunstrc
picom.conf .config/picom.conf
2021-07-04 18:25:28 +02:00
polybar.conf .config/polybar/config
2021-07-17 22:13:00 +02:00
rofi.conf .config/rofi/config.rasi
2021-09-09 08:50:15 +02:00
fonts.conf .config/fontconfig/fonts.conf
EOF
rm -f ~/.config/gtk-3.0/settings.ini
dconf load / < ~/.config/i3/dotfiles/dconf.ini
# Services are started with systemd
systemctl --user import-environment
systemctl --user daemon-reload
exec systemctl --user start --wait i3.service