Skip to content

Instantly share code, notes, and snippets.

@axelbdt
Last active November 19, 2022 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save axelbdt/400e74cc60e766cdfc539445e7990921 to your computer and use it in GitHub Desktop.
Save axelbdt/400e74cc60e766cdfc539445e7990921 to your computer and use it in GitHub Desktop.
How to set up BQN keyboard layout on GNOME

How to set up BQN keyboard layout on GNOME

Download the XKB configuration for bqn here, and place it whith the other layouts:

curl https://raw.githubusercontent.com/mlochbaum/BQN/master/editors/bqn
cp bqn /usr/share/X11/xkb/symbols/

Add an entry for BQN in evdev.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xkbConfigRegistry SYSTEM "xkb.dtd">
<xkbConfigRegistry version="1.1">
  <modelList>
  ...
  </modelList>
  <layoutList>
    <!-- Add this layout entry -->
    <layout>
      <configItem>
        <name>bqn</name>
        <shortDescription>BQN</shortDescription>
        <description>BQN</description>
      </configItem>
      <variantList/>
    </layout>
    ...
  </layoutList>
  ...

BQN should be an available layout in the GNOME Keyboard settings (restart the Desktop environment if it isn't).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment