dotfiles/xinitrc
Irrlicht f9d774aa18
[i3][x11] Change how some programs are started and X11 management
Start Feh for background management using the xinitrc script. Directly
source machine specific configuration through xsession file. xprofile
file is deprecated and deleted.

Stat xss from the xsession file and no longer start it on piston.
2026-04-01 21:18:42 +02:00

16 lines
175 B
Bash

#!/bin/bash
PATH_XSESSION=$HOME/.xsession
PATH_FEH=$HOME/.feh-bg
if [ -f $PATH_XSESSION ]
then
. $PATH_XSESSION
fi
if [ -f $PATH_FEH ]
then
. $PATH_FEH
fi
exec i3