I learned this back in
post33913.html#p33913
The
Code: Select all
locate wallpaper.sh
Code: Select all
locate wallpaper.sh
Then I definitely think that the default startup delay is to blame among the other items that are troublesome. I really think that the default startup delay should be 3 secconds. That should allow older slower machines adequate time to boot and if you have a newer machine it is not that hard to trim back.thriftee wrote:"SOMETIMES" it goes away, not always.
If I use the wallpaper app to change it, it works fine, at least for a while. It might be a reboot that gets it lost.
Code: Select all
#
# These things are run when an Openbox X Session is started.
# You may place a similar script in $HOME/.config/openbox/autostart
# to run user-specific things.
#
# If you want to use GNOME config tools...
#
#if test -x /usr/lib/i386-linux-gnu/gnome-settings-daemon >/dev/null; then
# /usr/lib/i386-linux-gnu/gnome-settings-daemon &
#elif which gnome-settings-daemon >/dev/null 2>&1; then
# gnome-settings-daemon &
#fi
# If you want to use XFCE config tools...
#
#xfce-mcs-manager &
tint2 -c ~/.config/tint2/tint2rc &
Code: Select all
STARTUP_DELAY="1"
Code: Select all
STARTUP_DELAY="3"
Code: Select all
STARTUP_DELAY=
Code: Select all
/ etc/desktop-session/desktop-session.conf
Code: Select all
~/.desktop-session/desktop-session.conf
Code: Select all
<mouse>
...
<context name="Desktop">
<mousebind button="Left" action="Click">
<action name="Execute">
<command>amixer sset Master toggle</command>
</action>
</mousebind>
<mousebind button="S-Right" action="Click">
<action name="Execute">
<command>amixer sset Master unmute</command>
</action>
</mousebind>
<mousebind button="S-Up" action="Click">
<action name="Execute">
<command>amixer sset Master,0 1+</command>
</action>
</mousebind>
<mousebind button="S-Down" action="Click">
<action name="Execute">
<command>amixer sset Master,0 1-</command>
</action>
</mousebind>
...
</context>
</mouse>