Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chrisgfortes/342e78f8e79710218225eb20cb7928ee to your computer and use it in GitHub Desktop.
Save chrisgfortes/342e78f8e79710218225eb20cb7928ee to your computer and use it in GitHub Desktop.
[Linux] How to type “ç” / cedilla when using USA intl as the keyboard layout?

Step 1

Add the following lines in /etc/environment:

GTK_IM_MODULE=cedilla 
QT_IM_MODULE=cedilla 

Reference: https://askubuntu.com/a/370040/1244744

Step 2

Create a file named .XCompose Put in the beginning of the file include "%L" this will import the original configuration of /usr/share/X11/locale/en_US.UTF-8/Compose Then add those lines:

include "%L"
<dead_acute><C> : "Ç"
<dead_acute><c> : "ç"

Save your file in ~/ directory Reboot

Reference: https://askubuntu.com/a/1227109

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