我可以按键盘上的数字“7”并插入“字符串”而不是“7”吗?


0

我正在使用centos linux 6.4桌面(最小桌面) 我正在寻找一个解决方案,以便当我按下时 键盘上的数字'7'..

它会插入一个字符串而不是'7'...

the numbers on the right side of my keyboard are never used.
i need to make them become strings so i can use them to speed things up.

is there a software, or a program ? that can help me customize my keyboard?

对于SO来说这是偏离主题的,这是关于编程的问题。你可能想问一下 askubuntu.com
Ex Umbris

1
CentOS问题很可能也会因偏见而被关闭。 unix.stackexchange.com 似乎更合适。但是,由于键盘处理根据您的环境而有很大差异,因此最好还添加有关您正在使用的桌面环境(如果有)的信息,或者您是否仅通过SSH连接,例如,然后说。
tripleee

Answers:


0
  1. 安装 xvkbd

  2. 创建一个类似于此的脚本:

#!/bin/bash
sleep 0.5
xvkbd -text "some string"

你可能想调整一下 sleep 0.5 但是如果你把它留下来,按下的键会阻碍整个字符串的输入。

  1. 创建键盘快捷方式以启动脚本。请注意,如果您的主文件夹中有脚本,则必须将其硬编码为 bash /home/USER/folder/script.shbash ~/folder/script.sh 将无法工作(至少在基于Ubuntu的发行版中是这样的)。数字键盘上的“7”应为“KP_Home”,因此不应与数字7的输入冲突。

这个设置适用于Linux Mint。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.