我的~/.Xmodmap
:
remove mod1 = Alt_R
add mod1 = Alt_R
我的~/.profile
:
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
if [ -f $HOME/.Xmodmap ]; then
/usr/bin/xmodmap $HOME/.Xmodmap
fi
为什么我无法更改我的 xmodmap?