Initial i3 configuration

This is derived from my Awesome configuration. Still a lot to do from
a WM perspective. The organization is a bit different and I am giving
it up on the per-display systemd units as it does not really work due
to the fact we only have one user DBus and one environment.
This commit is contained in:
Vincent Bernat 2021-07-03 14:13:56 +02:00
parent d3af9e4890
commit d85a504c53
95 changed files with 383 additions and 3116 deletions

View file

@ -3,9 +3,6 @@
# Ensure we use the appropriate gtkrc-2.0 file
export GTK2_RC_FILES=$HOME/.gtkrc-2.0
# Java incompatibility with awesome
export _JAVA_AWT_WM_NONREPARENTING=1
# We do not want to rely on crappy mailcap
export MAILCAPS=$HOME/.mailcap
@ -20,9 +17,20 @@ export NO_AT_BRIDGE=1
unset LC_ALL
[ -e ~/.zshenv ] && . ~/.zshenv
# Copy dotfiles
while read source target; do
mkdir -p $(dirname $target)
ln -sf ~/.config/i3/dotfiles/$source $HOME/$target
done <<EOF
Xresources .Xresources
gtkrc-2.0 .gtkrc-2.0
gtkrc-3.0 .config/gtk-3.0/settings.ini
qt5ct.conf .config/qt5ct/qt5ct.conf
systemd .config/systemd/user
firefox.js .mozilla/firefox/*/user.js
EOF
# Services are started with systemd
systemctl --user import-environment
mkdir -p ~/.config/systemd
ln -nsf ~/.config/awesome/systemd ~/.config/systemd/user
systemctl --user daemon-reload
exec systemctl --user start --wait xsession@$(systemd-escape -- "$DISPLAY").target
exec systemctl --user start --wait xsession.target