Results 1 to 3 of 3

Thread: volume randomly increases on it's own

  1. #1
    Join Date
    Aug 2007
    Location
    Thornhill, Ontario Canada
    Beans
    57
    Distro
    Ubuntu 13.10 Saucy Salamander

    volume randomly increases on it's own

    I've been having this problem for the past 2 weeks in which the volume will randomly increase to maxium all on its own and the volume notification will keep flashing unit I press the volume buttons on my keyboard. It looks similar as if you are holding down to the volume up button on the keyboard. I have tried several different keyboards and the problem is still happening. I don't know how to stop this. Does anyone else have this issue and does anyone know how to fix it? I'm using Ubuntu 13.10. Didn't have this problem on previous releases.

    thanks

  2. #2
    Join Date
    Jul 2013
    Beans
    129

    Re: volume randomly increases on it's own

    Do you have a touchpad? I have one and all sorts of weird things would happen even if I was not touching it, due to extreme sensitivity. Since I normally use a mouse anyway I put up a little icon to disable the touchpad. Here is what I put in my Desktop directory:

    Code:
    [Desktop Entry]
    Encoding=UTF-8
    Type=Application
    Name=Toggle the touchpad
    Name[en_US]=Toggle the touchpad
    Exec=/home/paul/touch_toggle.sh
    Comment[en_US]=
    Terminal=false
    Here is the script:

    Code:
    #
    # tp_toggle
    #
    # Toggle the touchpad on/off.
    
    
    # Get the id number of the touchpad.
    tp_id=`xinput list | grep -i touchpad | awk '{ print $6 }' | sed 's/id=//'`
    
    
    # Find out whether the touchpad is enabled or not.
    tp_enabled=`xinput list-props $tp_id | grep Device\ Enabled | awk '{ print $4 }'`
    
    
    if [ $tp_enabled = 0 ]
    then
      # The touchpad is currently disabled, so turn it on.
      xinput set-prop $tp_id "Device Enabled" 1
      echo "Touchpad now on."
    elif [ $tp_enabled = 1 ]
    then
      # The touchpad is currently enabled, so turn it off.
      xinput set-prop $tp_id "Device Enabled" 0
      echo "Touchpad now off."
    else
      echo "tp_toggle: Could not get touchpad status from xinput."
      exit 1
    fi
    I didn't code it myself, just found it somewhere and it worked for me.

  3. #3
    Join Date
    Aug 2007
    Location
    Thornhill, Ontario Canada
    Beans
    57
    Distro
    Ubuntu 13.10 Saucy Salamander

    Re: volume randomly increases on it's own

    Thanks for your reply but I don't have a touchpad. Just a wireless mouse and wired keyboard. It just started happening. I've also got a dual boot with Kubuntu 13.10 and the same thing is happening there as well althought it doesn't seem to be as frequent.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •