mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-10-31 23:49:25 +01:00
11 lines
388 B
Plaintext
11 lines
388 B
Plaintext
# xprofile reading
|
|
[ -f /etc/xprofile ] && . /etc/xprofile
|
|
[ -f ~/.xprofile ] && . ~/.xprofile
|
|
# flatpak & snap & co.
|
|
. /etc/profile
|
|
# Using dbus-launch seems to be necessary here to get dbus up, otherwise
|
|
# there are errors about it missing and pasystray & nm-applet cannot be
|
|
# interacted with.
|
|
#exec dbus-launch --exit-with-session mate-session
|
|
exec dbus-launch --exit-with-session i3
|