[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-25 Thread NTolerance
Can also reproduce this on Intrepid.  GSynaptics is pretty much required
for my Dell Studio 15n and its Alps touchpad.  Without GSynaptics the
touchpad is too slow to be usable.  I don't see any reason why
GSynaptics shouldn't be installed by default on any laptop.  Why
wouldn't a user want to configure their touchpad separate from their
mouse?

Can anyone show me the correct way to edit the resume scripts to get
this to work automagically?

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-21 Thread joseff
Confirming that BurakkuChi's fix works
Compaq Presario V3000

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-26 Thread eneeng
BurakkuChi's fix does work for me sometimes.  After resuming from
suspend, my saved touchpad settings in gsynaptics are loaded.  However,
after several suspend cycles, both touchpad and keyboard no longer work
upon resuming from suspend.  At this point, i have to reset my dell
laptop.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-10 Thread Florian Schricker
I'd be interested in any pointers on how to write some resume script(s),
too.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-11 Thread NTolerance
After some trial and error I cooked up a resume script:

/etc/pm/sleep.d/90-gsynaptics-init

Remember to make it executable.  Let me know if it works for you.



** Attachment added: "90-gsynaptics-init"
   http://launchpadlibrarian.net/22506354/90-gsynaptics-init

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-14 Thread anton sakovich
NTolerance, thanks for your input. I tried the script following your
instructions, but unfortunately it didn't work for me. How can I check
what goes wrong?

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread BurakkuChi
NTolerance,
  For some reason, I couldn't get the same script you wrote to work. I slightly 
modified it and ended with:


#!/bin/sh

RUNUSER=`who | grep tty | sed 's/\([a-z]*\).*/\1/'`

touchpad_init()
{
sleep 5
DISPLAY=:0.0 su ${RUNUSER} -c 'xhost +'
DISPLAY=:0.0 su ${RUNUSER} -c '/usr/bin/gsynaptics-init --sm-disable'
DISPLAY=:0.0 su ${RUNUSER} -c 'xhost -'
}

case "$1" in
thaw|resume)
touchpad_init &
;;
esac

exit 0


I don't see any major differences, but it seems to work. Also, I added
$RUNUSER because it seems that sometimes, I'm logged in under tty9
instead of tty7. There should be a better way to get the user that is
resuming though. 

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread anton sakovich
BurakkuChi,
thanks: works for me :)

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread BurakkuChi
FYI, I didn't try until after everything was working, but you don't need
the lines with 'xhost' in it. So you can just use the following:


#!/bin/sh

RUNUSER=`who | grep tty | sed 's/\([a-z]*\).*/\1/'`

touchpad_init()
{
sleep 5
DISPLAY=:0.0 su ${RUNUSER} -c '/usr/bin/gsynaptics-init --sm-disable'
}

case "$1" in
thaw|resume)
touchpad_init &
;;
esac

exit 0


I guess this works because it runs the function touchpad_init() in the
background, exits the script, and allows X to startup before it runs
gsynaptics-init.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-05-17 Thread nathan
upgraded to 9.04 and I still have this bug

gsynaptics version is 0.9.14-8

I'm going to try the script discussed above, but it's just a workaround.
Is there any effort underway to fix the problem so that we don't need
the script to make it work?  Seems like gsynaptics shouldn't forget it's
settings in the first place.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-05-17 Thread nathan
After suspending and resuming a couple of times the script works for me

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-07-27 Thread Miloš Mandarić
I have this issue in Ubuntu 9.10.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-08 Thread Hans-Peter Klett
Same issue

Dell Latitude D620
Intrepid

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-08 Thread Victor Trac
I found that the problem is gsynaptics-init needs to be run upon resume.
You can do this manually in the CLI, but probably a better way is to add
this to the acpi resume scripts upon installation of gsynaptics (or
maybe make gsynaptics installed be default and already include this
script?).

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-03 Thread anton sakovich
I have the same issue. After resume from suspend gsynaptics forgets
settings.

Dell Inspiron 1420
Ubuntu 8.10
gsynaptics 0.9.14-6

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-08 Thread Hans-Peter Klett
Same issue

Dell Latitude D620
Intrepid

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-08 Thread Victor Trac
I found that the problem is gsynaptics-init needs to be run upon resume.
You can do this manually in the CLI, but probably a better way is to add
this to the acpi resume scripts upon installation of gsynaptics (or
maybe make gsynaptics installed be default and already include this
script?).

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-10 Thread Florian Schricker
I'd be interested in any pointers on how to write some resume script(s),
too.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-11 Thread NTolerance
After some trial and error I cooked up a resume script:

/etc/pm/sleep.d/90-gsynaptics-init

Remember to make it executable.  Let me know if it works for you.



** Attachment added: "90-gsynaptics-init"
   http://launchpadlibrarian.net/22506354/90-gsynaptics-init

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-14 Thread anton sakovich
NTolerance, thanks for your input. I tried the script following your
instructions, but unfortunately it didn't work for me. How can I check
what goes wrong?

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-03 Thread anton sakovich
I have the same issue. After resume from suspend gsynaptics forgets
settings.

Dell Inspiron 1420
Ubuntu 8.10
gsynaptics 0.9.14-6

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-25 Thread NTolerance
Can also reproduce this on Intrepid.  GSynaptics is pretty much required
for my Dell Studio 15n and its Alps touchpad.  Without GSynaptics the
touchpad is too slow to be usable.  I don't see any reason why
GSynaptics shouldn't be installed by default on any laptop.  Why
wouldn't a user want to configure their touchpad separate from their
mouse?

Can anyone show me the correct way to edit the resume scripts to get
this to work automagically?

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-26 Thread eneeng
BurakkuChi's fix does work for me sometimes.  After resuming from
suspend, my saved touchpad settings in gsynaptics are loaded.  However,
after several suspend cycles, both touchpad and keyboard no longer work
upon resuming from suspend.  At this point, i have to reset my dell
laptop.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-25 Thread NTolerance
Can also reproduce this on Intrepid.  GSynaptics is pretty much required
for my Dell Studio 15n and its Alps touchpad.  Without GSynaptics the
touchpad is too slow to be usable.  I don't see any reason why
GSynaptics shouldn't be installed by default on any laptop.  Why
wouldn't a user want to configure their touchpad separate from their
mouse?

Can anyone show me the correct way to edit the resume scripts to get
this to work automagically?

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-05-17 Thread nathan
upgraded to 9.04 and I still have this bug

gsynaptics version is 0.9.14-8

I'm going to try the script discussed above, but it's just a workaround.
Is there any effort underway to fix the problem so that we don't need
the script to make it work?  Seems like gsynaptics shouldn't forget it's
settings in the first place.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-05-17 Thread nathan
After suspending and resuming a couple of times the script works for me

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-08 Thread Hans-Peter Klett
Same issue

Dell Latitude D620
Intrepid

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-08 Thread Victor Trac
I found that the problem is gsynaptics-init needs to be run upon resume.
You can do this manually in the CLI, but probably a better way is to add
this to the acpi resume scripts upon installation of gsynaptics (or
maybe make gsynaptics installed be default and already include this
script?).

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-11 Thread NTolerance
After some trial and error I cooked up a resume script:

/etc/pm/sleep.d/90-gsynaptics-init

Remember to make it executable.  Let me know if it works for you.



** Attachment added: "90-gsynaptics-init"
   http://launchpadlibrarian.net/22506354/90-gsynaptics-init

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-14 Thread anton sakovich
NTolerance, thanks for your input. I tried the script following your
instructions, but unfortunately it didn't work for me. How can I check
what goes wrong?

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-10 Thread Florian Schricker
I'd be interested in any pointers on how to write some resume script(s),
too.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-03 Thread anton sakovich
I have the same issue. After resume from suspend gsynaptics forgets
settings.

Dell Inspiron 1420
Ubuntu 8.10
gsynaptics 0.9.14-6

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread BurakkuChi
NTolerance,
  For some reason, I couldn't get the same script you wrote to work. I slightly 
modified it and ended with:


#!/bin/sh

RUNUSER=`who | grep tty | sed 's/\([a-z]*\).*/\1/'`

touchpad_init()
{
sleep 5
DISPLAY=:0.0 su ${RUNUSER} -c 'xhost +'
DISPLAY=:0.0 su ${RUNUSER} -c '/usr/bin/gsynaptics-init --sm-disable'
DISPLAY=:0.0 su ${RUNUSER} -c 'xhost -'
}

case "$1" in
thaw|resume)
touchpad_init &
;;
esac

exit 0


I don't see any major differences, but it seems to work. Also, I added
$RUNUSER because it seems that sometimes, I'm logged in under tty9
instead of tty7. There should be a better way to get the user that is
resuming though. 

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread anton sakovich
BurakkuChi,
thanks: works for me :)

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread BurakkuChi
FYI, I didn't try until after everything was working, but you don't need
the lines with 'xhost' in it. So you can just use the following:


#!/bin/sh

RUNUSER=`who | grep tty | sed 's/\([a-z]*\).*/\1/'`

touchpad_init()
{
sleep 5
DISPLAY=:0.0 su ${RUNUSER} -c '/usr/bin/gsynaptics-init --sm-disable'
}

case "$1" in
thaw|resume)
touchpad_init &
;;
esac

exit 0


I guess this works because it runs the function touchpad_init() in the
background, exits the script, and allows X to startup before it runs
gsynaptics-init.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-21 Thread joseff
Confirming that BurakkuChi's fix works
Compaq Presario V3000

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-26 Thread eneeng
BurakkuChi's fix does work for me sometimes.  After resuming from
suspend, my saved touchpad settings in gsynaptics are loaded.  However,
after several suspend cycles, both touchpad and keyboard no longer work
upon resuming from suspend.  At this point, i have to reset my dell
laptop.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-21 Thread joseff
Confirming that BurakkuChi's fix works
Compaq Presario V3000

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread BurakkuChi
NTolerance,
  For some reason, I couldn't get the same script you wrote to work. I slightly 
modified it and ended with:


#!/bin/sh

RUNUSER=`who | grep tty | sed 's/\([a-z]*\).*/\1/'`

touchpad_init()
{
sleep 5
DISPLAY=:0.0 su ${RUNUSER} -c 'xhost +'
DISPLAY=:0.0 su ${RUNUSER} -c '/usr/bin/gsynaptics-init --sm-disable'
DISPLAY=:0.0 su ${RUNUSER} -c 'xhost -'
}

case "$1" in
thaw|resume)
touchpad_init &
;;
esac

exit 0


I don't see any major differences, but it seems to work. Also, I added
$RUNUSER because it seems that sometimes, I'm logged in under tty9
instead of tty7. There should be a better way to get the user that is
resuming though. 

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread anton sakovich
BurakkuChi,
thanks: works for me :)

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread BurakkuChi
FYI, I didn't try until after everything was working, but you don't need
the lines with 'xhost' in it. So you can just use the following:


#!/bin/sh

RUNUSER=`who | grep tty | sed 's/\([a-z]*\).*/\1/'`

touchpad_init()
{
sleep 5
DISPLAY=:0.0 su ${RUNUSER} -c '/usr/bin/gsynaptics-init --sm-disable'
}

case "$1" in
thaw|resume)
touchpad_init &
;;
esac

exit 0


I guess this works because it runs the function touchpad_init() in the
background, exits the script, and allows X to startup before it runs
gsynaptics-init.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-05-17 Thread nathan
upgraded to 9.04 and I still have this bug

gsynaptics version is 0.9.14-8

I'm going to try the script discussed above, but it's just a workaround.
Is there any effort underway to fix the problem so that we don't need
the script to make it work?  Seems like gsynaptics shouldn't forget it's
settings in the first place.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-05-17 Thread nathan
After suspending and resuming a couple of times the script works for me

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-07-27 Thread Miloš Mandarić
I have this issue in Ubuntu 9.10.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-07-27 Thread Miloš Mandarić
I have this issue in Ubuntu 9.10.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-26 Thread eneeng
BurakkuChi's fix does work for me sometimes.  After resuming from
suspend, my saved touchpad settings in gsynaptics are loaded.  However,
after several suspend cycles, both touchpad and keyboard no longer work
upon resuming from suspend.  At this point, i have to reset my dell
laptop.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-25 Thread NTolerance
Can also reproduce this on Intrepid.  GSynaptics is pretty much required
for my Dell Studio 15n and its Alps touchpad.  Without GSynaptics the
touchpad is too slow to be usable.  I don't see any reason why
GSynaptics shouldn't be installed by default on any laptop.  Why
wouldn't a user want to configure their touchpad separate from their
mouse?

Can anyone show me the correct way to edit the resume scripts to get
this to work automagically?

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-11 Thread NTolerance
After some trial and error I cooked up a resume script:

/etc/pm/sleep.d/90-gsynaptics-init

Remember to make it executable.  Let me know if it works for you.



** Attachment added: "90-gsynaptics-init"
   http://launchpadlibrarian.net/22506354/90-gsynaptics-init

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-14 Thread anton sakovich
NTolerance, thanks for your input. I tried the script following your
instructions, but unfortunately it didn't work for me. How can I check
what goes wrong?

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-10 Thread Florian Schricker
I'd be interested in any pointers on how to write some resume script(s),
too.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread BurakkuChi
NTolerance,
  For some reason, I couldn't get the same script you wrote to work. I slightly 
modified it and ended with:


#!/bin/sh

RUNUSER=`who | grep tty | sed 's/\([a-z]*\).*/\1/'`

touchpad_init()
{
sleep 5
DISPLAY=:0.0 su ${RUNUSER} -c 'xhost +'
DISPLAY=:0.0 su ${RUNUSER} -c '/usr/bin/gsynaptics-init --sm-disable'
DISPLAY=:0.0 su ${RUNUSER} -c 'xhost -'
}

case "$1" in
thaw|resume)
touchpad_init &
;;
esac

exit 0


I don't see any major differences, but it seems to work. Also, I added
$RUNUSER because it seems that sometimes, I'm logged in under tty9
instead of tty7. There should be a better way to get the user that is
resuming though. 

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread anton sakovich
BurakkuChi,
thanks: works for me :)

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread BurakkuChi
FYI, I didn't try until after everything was working, but you don't need
the lines with 'xhost' in it. So you can just use the following:


#!/bin/sh

RUNUSER=`who | grep tty | sed 's/\([a-z]*\).*/\1/'`

touchpad_init()
{
sleep 5
DISPLAY=:0.0 su ${RUNUSER} -c '/usr/bin/gsynaptics-init --sm-disable'
}

case "$1" in
thaw|resume)
touchpad_init &
;;
esac

exit 0


I guess this works because it runs the function touchpad_init() in the
background, exits the script, and allows X to startup before it runs
gsynaptics-init.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-21 Thread joseff
Confirming that BurakkuChi's fix works
Compaq Presario V3000

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-05-17 Thread nathan
upgraded to 9.04 and I still have this bug

gsynaptics version is 0.9.14-8

I'm going to try the script discussed above, but it's just a workaround.
Is there any effort underway to fix the problem so that we don't need
the script to make it work?  Seems like gsynaptics shouldn't forget it's
settings in the first place.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-05-17 Thread nathan
After suspending and resuming a couple of times the script works for me

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-08 Thread Hans-Peter Klett
Same issue

Dell Latitude D620
Intrepid

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-08 Thread Victor Trac
I found that the problem is gsynaptics-init needs to be run upon resume.
You can do this manually in the CLI, but probably a better way is to add
this to the acpi resume scripts upon installation of gsynaptics (or
maybe make gsynaptics installed be default and already include this
script?).

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-03 Thread anton sakovich
I have the same issue. After resume from suspend gsynaptics forgets
settings.

Dell Inspiron 1420
Ubuntu 8.10
gsynaptics 0.9.14-6

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-26 Thread eneeng
BurakkuChi's fix does work for me sometimes.  After resuming from
suspend, my saved touchpad settings in gsynaptics are loaded.  However,
after several suspend cycles, both touchpad and keyboard no longer work
upon resuming from suspend.  At this point, i have to reset my dell
laptop.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-25 Thread NTolerance
Can also reproduce this on Intrepid.  GSynaptics is pretty much required
for my Dell Studio 15n and its Alps touchpad.  Without GSynaptics the
touchpad is too slow to be usable.  I don't see any reason why
GSynaptics shouldn't be installed by default on any laptop.  Why
wouldn't a user want to configure their touchpad separate from their
mouse?

Can anyone show me the correct way to edit the resume scripts to get
this to work automagically?

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-11 Thread NTolerance
After some trial and error I cooked up a resume script:

/etc/pm/sleep.d/90-gsynaptics-init

Remember to make it executable.  Let me know if it works for you.



** Attachment added: "90-gsynaptics-init"
   http://launchpadlibrarian.net/22506354/90-gsynaptics-init

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-14 Thread anton sakovich
NTolerance, thanks for your input. I tried the script following your
instructions, but unfortunately it didn't work for me. How can I check
what goes wrong?

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-10 Thread Florian Schricker
I'd be interested in any pointers on how to write some resume script(s),
too.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-07-27 Thread Miloš Mandarić
I have this issue in Ubuntu 9.10.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-05-17 Thread nathan
upgraded to 9.04 and I still have this bug

gsynaptics version is 0.9.14-8

I'm going to try the script discussed above, but it's just a workaround.
Is there any effort underway to fix the problem so that we don't need
the script to make it work?  Seems like gsynaptics shouldn't forget it's
settings in the first place.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-05-17 Thread nathan
After suspending and resuming a couple of times the script works for me

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread BurakkuChi
NTolerance,
  For some reason, I couldn't get the same script you wrote to work. I slightly 
modified it and ended with:


#!/bin/sh

RUNUSER=`who | grep tty | sed 's/\([a-z]*\).*/\1/'`

touchpad_init()
{
sleep 5
DISPLAY=:0.0 su ${RUNUSER} -c 'xhost +'
DISPLAY=:0.0 su ${RUNUSER} -c '/usr/bin/gsynaptics-init --sm-disable'
DISPLAY=:0.0 su ${RUNUSER} -c 'xhost -'
}

case "$1" in
thaw|resume)
touchpad_init &
;;
esac

exit 0


I don't see any major differences, but it seems to work. Also, I added
$RUNUSER because it seems that sometimes, I'm logged in under tty9
instead of tty7. There should be a better way to get the user that is
resuming though. 

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread anton sakovich
BurakkuChi,
thanks: works for me :)

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread BurakkuChi
FYI, I didn't try until after everything was working, but you don't need
the lines with 'xhost' in it. So you can just use the following:


#!/bin/sh

RUNUSER=`who | grep tty | sed 's/\([a-z]*\).*/\1/'`

touchpad_init()
{
sleep 5
DISPLAY=:0.0 su ${RUNUSER} -c '/usr/bin/gsynaptics-init --sm-disable'
}

case "$1" in
thaw|resume)
touchpad_init &
;;
esac

exit 0


I guess this works because it runs the function touchpad_init() in the
background, exits the script, and allows X to startup before it runs
gsynaptics-init.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-21 Thread joseff
Confirming that BurakkuChi's fix works
Compaq Presario V3000

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-07-27 Thread Miloš Mandarić
I have this issue in Ubuntu 9.10.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-08 Thread Hans-Peter Klett
Same issue

Dell Latitude D620
Intrepid

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-08 Thread Victor Trac
I found that the problem is gsynaptics-init needs to be run upon resume.
You can do this manually in the CLI, but probably a better way is to add
this to the acpi resume scripts upon installation of gsynaptics (or
maybe make gsynaptics installed be default and already include this
script?).

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-03 Thread anton sakovich
I have the same issue. After resume from suspend gsynaptics forgets
settings.

Dell Inspiron 1420
Ubuntu 8.10
gsynaptics 0.9.14-6

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-26 Thread eneeng
BurakkuChi's fix does work for me sometimes.  After resuming from
suspend, my saved touchpad settings in gsynaptics are loaded.  However,
after several suspend cycles, both touchpad and keyboard no longer work
upon resuming from suspend.  At this point, i have to reset my dell
laptop.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-25 Thread NTolerance
Can also reproduce this on Intrepid.  GSynaptics is pretty much required
for my Dell Studio 15n and its Alps touchpad.  Without GSynaptics the
touchpad is too slow to be usable.  I don't see any reason why
GSynaptics shouldn't be installed by default on any laptop.  Why
wouldn't a user want to configure their touchpad separate from their
mouse?

Can anyone show me the correct way to edit the resume scripts to get
this to work automagically?

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-11 Thread NTolerance
After some trial and error I cooked up a resume script:

/etc/pm/sleep.d/90-gsynaptics-init

Remember to make it executable.  Let me know if it works for you.



** Attachment added: "90-gsynaptics-init"
   http://launchpadlibrarian.net/22506354/90-gsynaptics-init

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-14 Thread anton sakovich
NTolerance, thanks for your input. I tried the script following your
instructions, but unfortunately it didn't work for me. How can I check
what goes wrong?

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-08 Thread Hans-Peter Klett
Same issue

Dell Latitude D620
Intrepid

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-08 Thread Victor Trac
I found that the problem is gsynaptics-init needs to be run upon resume.
You can do this manually in the CLI, but probably a better way is to add
this to the acpi resume scripts upon installation of gsynaptics (or
maybe make gsynaptics installed be default and already include this
script?).

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-01-03 Thread anton sakovich
I have the same issue. After resume from suspend gsynaptics forgets
settings.

Dell Inspiron 1420
Ubuntu 8.10
gsynaptics 0.9.14-6

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-10 Thread Florian Schricker
I'd be interested in any pointers on how to write some resume script(s),
too.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread BurakkuChi
NTolerance,
  For some reason, I couldn't get the same script you wrote to work. I slightly 
modified it and ended with:


#!/bin/sh

RUNUSER=`who | grep tty | sed 's/\([a-z]*\).*/\1/'`

touchpad_init()
{
sleep 5
DISPLAY=:0.0 su ${RUNUSER} -c 'xhost +'
DISPLAY=:0.0 su ${RUNUSER} -c '/usr/bin/gsynaptics-init --sm-disable'
DISPLAY=:0.0 su ${RUNUSER} -c 'xhost -'
}

case "$1" in
thaw|resume)
touchpad_init &
;;
esac

exit 0


I don't see any major differences, but it seems to work. Also, I added
$RUNUSER because it seems that sometimes, I'm logged in under tty9
instead of tty7. There should be a better way to get the user that is
resuming though. 

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread anton sakovich
BurakkuChi,
thanks: works for me :)

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-17 Thread BurakkuChi
FYI, I didn't try until after everything was working, but you don't need
the lines with 'xhost' in it. So you can just use the following:


#!/bin/sh

RUNUSER=`who | grep tty | sed 's/\([a-z]*\).*/\1/'`

touchpad_init()
{
sleep 5
DISPLAY=:0.0 su ${RUNUSER} -c '/usr/bin/gsynaptics-init --sm-disable'
}

case "$1" in
thaw|resume)
touchpad_init &
;;
esac

exit 0


I guess this works because it runs the function touchpad_init() in the
background, exits the script, and allows X to startup before it runs
gsynaptics-init.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-02-21 Thread joseff
Confirming that BurakkuChi's fix works
Compaq Presario V3000

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-05-17 Thread nathan
upgraded to 9.04 and I still have this bug

gsynaptics version is 0.9.14-8

I'm going to try the script discussed above, but it's just a workaround.
Is there any effort underway to fix the problem so that we don't need
the script to make it work?  Seems like gsynaptics shouldn't forget it's
settings in the first place.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-05-17 Thread nathan
After suspending and resuming a couple of times the script works for me

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 303595] Re: Gsynaptics loses settings on resume

2009-07-27 Thread Miloš Mandarić
I have this issue in Ubuntu 9.10.

-- 
Gsynaptics loses settings on resume
https://bugs.launchpad.net/bugs/303595
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs