Xset - 按键不重复

Xset - 按键不重复

我正在运行 Ubuntu 20.4 桌面,每次登录时都必须从命令行运行“xset r on”,否则按住箭头或 del 键不起作用(在重复模式下)。

我在我的主目录中的 .profile 文件末尾添加了“xset r on”,但这似乎不起作用。

有没有更好的方法在启动或登录时运行此命令?

附言:在我升级到 20.04 后,这个问题似乎又出现了,好奇我是否错过了某个设置。

这是我的 .profile 文件:

    # the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
    PATH="$HOME/.local/bin:$PATH"
fi

xset r on

答案1

我正在使用.bashrc同一目录中的文件来添加应在终端打开时执行的命令:

export PATH="$PATH:/home/usr/schmok"
/usr/bin/screenfetch -d "-disk;-pkgs;-shell;"
xset r on

但这只能治标,不能治本。

相关内容