Hey.
I made this script:
"
#!/bin/bash
# this script will automatically turn touchpad clicks on and off
if [ "$(synclient -l | grep 'TapButton1' | awk '{print $3}')" == 0 ];
then
synclient TapButton1=1
else
synclient TapButton1=0
fi
"
When I was using debian, I just made the script executable and draged it to
the lower panel. Everytime I clicked it, it would do it's job.
But in trisquel, even though it works (when I execute it from the terminal),
I can't get it to work in the panel, it only opens in gedit for editing.
Do I really have to move the script to a specific folder? I wanted to create
a folder in home called "MyScripts" and put all of mine there.
Any help?