Not difficult (well... not a script like this anyway.
)
Make a file in a text editor (not a word processor, because it'll fill it with invisible characters. Use nano, vim, kwrite, gedit, mousepad, something like that) with #!/bin/sh as the first line, then what you want executed.
Code:
#!/bin/sh
syndaemon -t -d
Something like that. Save it as, say, ~/scripts/touchpad.sh
Now make it executable
Code:
chmod +x ~/scripts/touchpad.sh
Then make a link to it in autostart
Code:
ln -s ~/scripts/touchpad.sh ~/.kde4/Autostart/touchpad
Should work...
Bookmarks