You are not logged in.

#1 2013-06-11 19:45:49

1archgamenon2
Banned
Registered: 2011-07-12
Posts: 201

[SOLVED] how to enable touchpad on start...

every start I need to enable touchpad: [Fn] + F7 it is a little(BIG?) annoying...on an Acer Aspire E1...some hint(s) to fix it?

tia!

Last edited by 1archgamenon2 (2013-06-25 16:49:51)

Offline

#2 2013-06-11 20:41:12

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,140

Re: [SOLVED] how to enable touchpad on start...

/etc/X11/xorg.conf.d/50-synaptics.conf?


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#3 2013-06-11 20:54:58

1archgamenon2
Banned
Registered: 2011-07-12
Posts: 201

Re: [SOLVED] how to enable touchpad on start...

thx 4the reply dude!

# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
#   Option "OptionName" "value"
#
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "TapButton2" "2"
        Option "TapButton3" "3"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
        MatchDevicePath "/dev/input/event*"
EndSection

Section "InputClass"
        Identifier "touchpad ignore duplicates"
        MatchIsTouchpad "on"
        MatchOS "Linux"
        MatchDevicePath "/dev/input/mouse*"
        Option "Ignore" "on"
EndSection

# This option enables the bottom right corner to be a right button on
# non-synaptics clickpads.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Default clickpad buttons"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
#       To disable the bottom edge area so the buttons only work as buttons,
#       not for movement, set the AreaBottomEdge
#       Option "AreaBottomEdge" "82%"
EndSection

# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Disable clickpad buttons on Apple touchpads"
        MatchProduct "Apple|bcm5974"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection

Offline

#4 2013-06-11 20:56:54

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,804

Re: [SOLVED] how to enable touchpad on start...

Does that mean you solved it? Or are you providing the file as it exists on your system?


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#5 2013-06-11 21:02:21

1archgamenon2
Banned
Registered: 2011-07-12
Posts: 201

Re: [SOLVED] how to enable touchpad on start...

yep,I'm providing the file asked by CFR

tia!

Offline

#6 2013-06-11 22:07:33

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,140

Re: [SOLVED] how to enable touchpad on start...

Maybe your DE is disabling it by default?


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#7 2013-06-12 17:09:34

1archgamenon2
Banned
Registered: 2011-07-12
Posts: 201

Re: [SOLVED] how to enable touchpad on start...

I use KDE and OPENBOX!(sorry,forgot mention it)

synclient -l
Couldn't find synaptics properties. No synaptics driver loaded?

Last edited by 1archgamenon2 (2013-06-12 18:39:32)

Offline

#8 2013-06-13 13:41:49

qinohe
Member
From: Netherlands
Registered: 2012-06-20
Posts: 1,494

Re: [SOLVED] how to enable touchpad on start...

Looks like it yeah!
is it installed?
Don't U have any other rules, in xinitrc for instance?

Offline

#9 2013-06-13 15:08:59

1archgamenon2
Banned
Registered: 2011-07-12
Posts: 201

Re: [SOLVED] how to enable touchpad on start...

Thx 4the reply dude!

xinput -list
⎡ Virtual core pointer                       id=2   [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                 id=4   [slave  pointer  (2)]
⎜   ↳ PS/2 Generic Mouse                         id=12   [slave  pointer  (2)]
⎣ Virtual core keyboard                      id=3   [master keyboard (2)]
    ↳ Virtual core XTEST keyboard                id=5   [slave  keyboard (3)]
    ↳ Power Button                               id=6   [slave  keyboard (3)]
    ↳ Video Bus                                  id=7   [slave  keyboard (3)]
    ↳ Power Button                               id=8   [slave  keyboard (3)]
    ↳ Sleep Button                               id=9   [slave  keyboard (3)]
    ↳ HD Webcam                                  id=10   [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard               id=11   [slave  keyboard (3)]
    ↳ Acer WMI hotkeys                           id=13   [slave  keyboard (3)]
#!/bin/sh

#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
#

## Ensure that the D-Bus Communication System is running properly to fix
## File management, authentication, and other essential system processes

if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
    eval "$(dbus-launch --sh-syntax --exit-with-session)"
fi


## Ensure that GTK themes are applied uniformly in the Desktop Environment

export GTK2_RC_FILES="$HOME/.gtkrc-2.0" 


## Where the default Home folders have not already been created, generate them

if [ -x /usr/bin/xdg-user-dirs-update ]; then
   /usr/bin/xdg-user-dirs-update
fi

## Ensure that obmenu-generator (a pipe menu) is set to the user.
## Needs only to be run once, so last sed command hashes the sed
## commands!

sed 's/_user_/'$(whoami)'/' ~/.config/obmenu-generator/schema.pl -i
sed 's/_user_/'$(whoami)'/' ~/.config/obmenu-generator/config.pl -i


DEFAULTSESSION=openbox-session

case "$1" in
     openbox) exec openbox-session ;;
     xfce) exec xfce4-session ;;
     gnome3) exec gnome-session ;;

     kde) exec startkde ;;
     cinnamon) exec gnome-session-cinnamon ;;
     razor-qt) exec razor-session ;;
     lxde) exec lxsession ;;
     mate) exec mate-session ;;
     *) exec $DEFAULTSESSION ;;
esac
$ pacman -Q

xf86-input-mouse 1.9.0-1
xf86-input-synaptics 1.7.1-1

Offline

#10 2013-06-13 15:30:43

cookies
Member
Registered: 2013-01-17
Posts: 253

Re: [SOLVED] how to enable touchpad on start...

Since xinput does not list your touchpad as "SynPS/2 Synaptics TouchPad" you should take a look at this: https://wiki.archlinux.org/index.php/To … 2_mouse.22

Offline

#11 2013-06-25 13:16:53

1archgamenon2
Banned
Registered: 2011-07-12
Posts: 201

Re: [SOLVED] how to enable touchpad on start...

AS SIMPLE AS:

# echo "blacklist acer_wmi" >> /etc/modprobe.d/blacklist-acer-wmi.conf

Offline

Board footer

Powered by FluxBB