blob: d4601d37386effe47050324a87d7f41966c60646 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
. "$HOME/.profile"
# make current environment available to systemd user units
systemctl --user import-environment $(export | cut -d= -f1)
xrdb -override "$XDG_CONFIG_HOME/X11/base"
# https://github.com/swaywm/sway/wiki#gtk-applications-take-20-seconds-to-start
dbus-update-activation-environment --systemd DISPLAY
exec i3
|