2016-12-31 01:35:13 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
#
|
|
|
|
# ~/.xsession
|
|
|
|
#
|
2021-06-11 21:38:47 +02:00
|
|
|
# Sourced by display managers
|
2016-12-31 01:35:13 +01:00
|
|
|
#
|
|
|
|
|
2021-12-02 10:57:09 +01:00
|
|
|
[ -f ~/.xprofile ] && . ~/.xprofile
|
2021-06-11 23:32:56 +02:00
|
|
|
if [ -f ~/.config/override_dm_choice ]
|
2019-04-28 04:05:45 +02:00
|
|
|
then
|
2021-06-11 23:32:56 +02:00
|
|
|
. ~/.config/xinitrc
|
|
|
|
else
|
|
|
|
. ~/.config/xinitrc $@
|
2019-04-28 04:05:45 +02:00
|
|
|
fi
|