Skip to content
On this page

Disable Non-Breaking Space Keybind

Annoying default Alt Gr + Space keybind.

Instructions

  1. Create a ~/.Xmodmap file into home folder
bash
echo "keycode 65 = space space space" >> ~/.Xmodmap;
echo "keycode 65 = space space space" >> ~/.Xmodmap;
1
  1. Map the keycode rules on session start
bash
echo -e "\n# Disable non-breaking space (U+00a0) keybind (AltGr + Space)\nxmodmap ~/.Xmodmap" >> ~/.bashrc;
echo -e "\n# Disable non-breaking space (U+00a0) keybind (AltGr + Space)\nxmodmap ~/.Xmodmap" >> ~/.bashrc;
1

Sources: