* Moved starting apps from .update_x into .start_desktop_apps * This allowed .update_x to be shown on screen during startup * Included "<Action>... Done" messages for clarity * Removed x_ok logic (didn't really work) * Replaced with a generic message that _should_ be left on screen if X fails
8 lines
155 B
Bash
Executable file
8 lines
155 B
Bash
Executable file
#!/bin/sh
|
|
|
|
dbus-update-activation-environment --systemd DISPLAY
|
|
eval $(ssh-agent)
|
|
export SSH_AUTH_SOCK
|
|
xrdb -merge $HOME/.Xresources
|
|
exec openbox-session
|
|
|