gpt4 book ai didi

CentOS 6.4使用脚本自动关闭触控板的方法

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章CentOS 6.4使用脚本自动关闭触控板的方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

触控板就是笔记本上面的那块能移动游标的设备,通常设有快捷键能够快速启用或关闭,在CentOS 6.4中,使用脚本能够自动关闭触控板,下面小编就给大家介绍下CentOS6.4如何使用脚本停用触控板,一起来学习下吧.

CentOS 6.4使用脚本自动关闭触控板的方法

  方法:

  1. 检查是否安装xorg-x11-app,

  rpm -qa xorg-x11-apps 。

  如果没有安装使用下面命令安装xorg-x11-app 。

  yum install xorg-x11-apps 。

  2.查看在图形模式下可用的输入设备 。

  xinput list 。

  我的电脑显示的是如下结果 。

  [root@reage input]# xinput list 。

  ⎡ Virtual core pointer id=2 [master pointer (3)] 。

  ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] 。

  ⎜ ↳ Macintosh mouse button emulation id=14 [slave pointer (2)] 。

  ⎜ ↳ SIGMACHIP Usb Mouse id=15 [slave pointer (2)] 。

  ⎜ ↳ ImPS/2 Logitech Wheel Mouse id=13 [slave pointer (2)] 。

  ⎣ Virtual core keyboard id=3 [master keyboard (2)] 。

  ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)] 。

  ↳ Asus Laptop extra buttons id=6 [slave keyboard (3)] 。

  ↳ AT Translated Set 2 keyboard id=7 [slave keyboard (3)] 。

  ↳ Lid Switch id=8 [slave keyboard (3)] 。

  ↳ USB 2.0 Camera id=9 [slave keyboard (3)] 。

  ↳ Sleep Button id=10 [slave keyboard (3)] 。

  ↳ Video Bus id=11 [slave keyboard (3)] 。

  ↳ Power Button id=12 [slave keyboard (3)] 。

  3.查找触控板对应的设备好 。

  不同的触控设备可能名字不同,但是一般触控板都是一个PS/2设备。所以在触控板的名字中可能会出现PS/2、touchpad字样。如果都找不到可以将Virtual core pointer 中的所有的设备id使用 xinput --set-prop 设备的id “Device Enabled” 0 依次执行,执行后滑动触控板看触控板是否可用,不可用表示已经找到,触控板对应的设备。然后使用xinput --set-prop 设备的id “Device Enabled” 1,将所有非触控板的输入设备依次启用.

  4.书写自动禁用触控板的脚本 。

  建立touchpad.sh 。

  vim touchpad.sh 。

  输入一下内容 。

  #!/bin/bash 。

  if [ “$1” = “on” ] || [ “$1” = “1” ] 。

  then 。

  xinput --set-prop 13 “Device Enabled” 1 。

  echo “open” 。

  elif [ “$1” = “off” ] || [ “$1” = “0” ] 。

  then 。

  xinput --set-prop 13 “Device Enabled” 0 。

  echo “close” 。

  else 。

  echo “请输入正确的参数:on/off 、0/1。” 。

  echo “开启触控板sh touchpad on或者sh touchpad 1。” 。

  echo “关闭触控板sh touchpad off或者sh touchpad 0”,

  fi 。

  上面就是CentOS6.4使用脚本关闭触控板的方法介绍了,虽然比快捷方式麻烦了点,但如果快捷方式失效的话该方法就能派上用场了.

最后此篇关于CentOS 6.4使用脚本自动关闭触控板的方法的文章就讲到这里了,如果你想了解更多关于CentOS 6.4使用脚本自动关闭触控板的方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com