在使用触摸板时,老是出现打字的误触问题,简直神烦,通过一通搜索找到解决防范
方法有三种
1.安装touchpad-indicator(这个因为好久的项目,貌似在鼠标插拔时有bug)
sudo add-apt-repository ppa:atareao/atareao
sudo apt update
sudo apt install touchpad-indicator
可以设置为开机自启动,当检测到鼠标插入的时候禁用触摸板,或者只是打字的时候禁用就行非常方便
2.使用命令
sudo rmmod psmouse 这个是禁用的
sudo modprobe psmouse 这个是启用的
3.使用GNOME Shell Extension安装(推荐)
Touchpad Indicator
编程:
1.linux思路:
命令行:
xinput --list 获取所有设备列表
或者cat /proc/bus/input/devices获取所有设备详细信息
禁用设备:xinput set-prop "id" "Device Enabled" 0
启用设备:xinput set-prop "10" "Device Enabled" 1
通过上述命令然后定时获取鼠标的在线情况,然后启动或者禁用触摸板,或者通过事件机制
linux下通过事件机制进行设备检测方法:
①通过netlinksocket
②使用udev编写规则
附①C语言代码实现
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <sys/un.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <linux/types.h>
#include <linux/netlink.h>
#include <errno.h>
#include <unistd.h>
#define UEVENT_BUFFER_SIZE 2048
static int init_hotplug_sock()
{
struct sockaddr_nl snl;
const int buffer_size = 16 * 1024 * 1024;
int retval = 0;
memset(&snl, 0, sizeof(snl));
snl.nl_family = AF_NETLINK;
snl.nl_pid = getpid();
snl.nl_groups = 1;
int hotplug_sock = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
if(hotplug_sock == -1)
{
printf("error gettting socket %s\n", strerror(errno));
return -1;
}
setsockopt(hotplug_sock, SOL_SOCKET, SO_RCVBUFFORCE, &buffer_size, sizeof(buffer_size));
retval = bind(hotplug_sock, (struct sockaddr *)&snl, sizeof(struct sockaddr_nl));
if(retval < 0)
{
printf("bind failed %s\n", strerror(errno));
close(hotplug_sock);
hotplug_sock = -1;
return -1;
}
return hotplug_sock;
}
int main(int argc, char *argv[])
{
printf("Hello Deivce!\n");
int hotplug_sock = init_hotplug_sock();
while(1)
{
char buf[UEVENT_BUFFER_SIZE * 2] = {0};
recv(hotplug_sock, &buf, sizeof(buf), 0);
printf("%s\n", buf);
}
return 0;
}
2.Windows思路:
①.通过注册表
②.通过消息WM_DEVICECHANGE OndeviceChange()实现