Skip to content

Commit 0c8b685

Browse files
committed
Fix slow start issue
1 parent 46a0add commit 0c8b685

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

xinitrc

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
#!/bin/sh
22

3+
# fixes issue: slow start of gtk apps
4+
# https://bbs.archlinux.org/viewtopic.php?id=224787
5+
if command -v dbus-update-activation-environment >/dev/null; then
6+
dbus-update-activation-environment --systemd DBUS_SESSION_BUS_ADDRESS DISPLAY XAUTHORITY
7+
8+
fi
9+
310

411
if [ -f ~/.Xresources ]; then
512
xrdb -load ~/.Xresources

0 commit comments

Comments
 (0)