J’ai fait un script à lancer au démarrage mais je ne trouve pas comment faire avec gnome !!! J’aurais mieux fait de rester sous xfce…plus simple
[quote]/opt/scripts# update-rc.d tap_tap.sh defaults
update-rc.d: error: initscript does not exist: /etc/init.d/tap_tap.sh[/quote]
J’ai mis le fichier tap_tap.sh dans /etc/init.d. J’ai mis les commandes à la fin du fichier ‘skeleton’ et renommé ce dernier en tape_tape.sh ; rien n’y fait.
Voilà mon fichier :
[quote]/etc/init.d# cat tap_tap.sh
#!/bin/sh
kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing.
if [ true != “$INIT_D_SCRIPT_SOURCED” ] ; then
set “$0” “$@”; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script
fi
BEGIN INIT INFO
Provides: skeleton
Required-Start: $remote_fs $syslog
Required-Stop: $remote_fs $syslog
Default-Start: 2 3 4 5
Default-Stop: 0 1 6
Short-Description: Example initscript
Description: This file should be used to construct scripts to be
placed in /etc/init.d. This example start a
single forking daemon capable of writing a pid
file. To get other behavoirs, implemend
do_start(), do_stop() or other functions to
override the defaults in /lib/init/init-d-script.
END INIT INFO
Please remove the “Author” lines above and replace them
with your own name if you copy and modify this script.
DESC="tap_tap"
DAEMON=/usr/sbin/taptap
taptap synclient
synclient TapButton1=1 TapButton2=2 TapButton3=3[/quote]