@Didier-T
Bonjour,
Je souhaite utiliser
'conky-control' sous openbox mais le script '
conky' fonctionne avec
xfce.
Je voudrais donc changer les paramètres du script
conky pour l'autostart d'openbox.
conky:
je crois que la partie à modifier pourrait être celle-ci:
Encoding=UTF-8
Version=0.9.4
Type=Application
Name=Conky $i (${conky[$i]})
Comment=
Exec=sh -c \"sleep 10; conky -c ${nom[$i]};\"
StartupNotify=false
Terminal=false
Hidden=false" > ~/.config/autostart/Conky\ $i\.desktop
else
if [ -f ~/.config/autostart/Conky\ $i\.desktop ]; then
rm ~/.config/autostart/Conky\ $i\.desktop &
fi
fi
fi
done
fi
}
exemple du fichier autostart dans openbox:
/home/raphix/.config/openbox/
autostart:
## Openbox autostart.sh
## ====================
## When you login to your CrunchBang Openbox session, this autostart script
## will be executed to set-up your environment and launch any applications
## you want to run at startup.
##
## Note*: some programs, such as 'nm-applet' are run via XDG autostart.
## Run '/usr/lib/openbox/openbox-xdg-autostart --list' to list any
## XDG autostarted programs.
##
## More information about this can be found at:
## http://openbox.org/wiki/Help:Autostart
##
## If you do something cool with your autostart script and you think others
## could benefit from your hack, please consider sharing it at:
## http://crunchbang.org/forums/
##
## Have fun & happy CrunchBangin'! :)
## GNOME PolicyKit and Keyring
eval $(gnome-keyring-daemon -s --components=pkcs11,secrets,ssh,gpg) &
## Set root window colour
hsetroot -solid "#2E3436" &
feh --bg-fill ~/images/fondsdebureaux/gris.jpg &
##nitrogen --restore &&
xcompmgr -c -C -f -I.16 -O.16 -t-6 -l-8 -r6 -o.7 &
##cb-compositor --start &&
tint2 &
## Volume control for systray
(sleep 2s && pnmixer) &
## Volume keys daemon
xfce4-volumed &
## Enable power management
##xfce4-power-manager &
## Disable
xset s off -dpms &
## Start Thunar Daemon
thunar --daemon &
## Detect and configure touchpad. See 'man synclient' for more info.
if egrep -iq 'touchpad' /proc/bus/input/devices; then
synclient VertEdgeScroll=1 &
synclient TapButton1=1 &
fi
## Start xscreensaver
##xscreensaver -no-splash &
## Start Clipboard manager
(sleep 3s && clipit) &
## Set keyboard settings - 250 ms delay and 25 cps (characters per second) repeat rate.
## Adjust the values according to your preferances.
xset r rate 250 25 &
## Turn on/off system beep
xset b off &
## The following command runs hacks and fixes for #! LiveCD sessions.
## Safe to delete after installation.
cb-cowpowers &
## cb-welcome - post-installation script, will not run in a live session and
## only runs once. Safe to remove.
(sleep 10s && cb-welcome --firstrun) &
## cb-fortune - have Waldorf say a little adage
#(sleep 120s && cb-fortune) &
## Run the conky
##conky -q &
##scripts externes pour xplanet
/usr/share/xplanet/nuages.sh &
/usr/local/bin/xplanet-bg &
# Make GTK apps look and behave how they were set up in the XFCE config tools
#elif which xfsettingsd >/dev/null; then
##xfsettingsd &
#fi
Faut-il modifier le chemin vers l'autostart d'openbox ou ajouter le script conky?... Je ne sais pas aller plus loin...
Comment dois-je m'y prendre ? Merci !