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.
16 lines
175 B
Bash
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
|