You are not logged in.
Pages: 1
I am having trouble getting openbox and .xinitrc to work together to launch my screensaver daemon and wallpaper. It must work to some extent because it is launching openbox, but neither nitrogen nor xscreensaver seem to be launching. Here is my .xinitrc file. Please tell me where else I can look to find the answer to this problem.
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
exec openbox-session
#xrdb -merge ~/.Xresources
nitrogen --restore &
xscreensaver -no-splash &Last edited by aaronkai (2012-03-23 23:43:54)
Offline
try putting exec openbox-session on the last line
All configs @ https://github.com/w0ng
Offline
... Or put an ampersand after exec openbox-session
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way
Offline
...or start that stuff in the aptly named autostart file.
Offline
[solved]
I put it in the autostart file.
For other noobuses out there, that would be in .config/openbox/autostart.
Thanks guys.
Offline
Actually, it would be ~/.config/openbox/autostart
Not to be nit-picky ![]()
Last edited by FlyingHappy (2012-03-24 02:01:26)
Offline
Pages: 1