Ubuntu – How to disable input language switching in terminal

command lineinput-languagelanguage

In Ubuntu 12.04 I have two input languages installed, English and Russian. I would like to disable use of Russian language in terminal – so that regardless of system-wide selection, terminal will always have english input language.

Is that possible?

The problem is, accidentally typed non-english characters may introduce a lot of pain (especially invisible ones).

UPDATE:

First of all, I'd like to thank all the participants – I am really excited how quickly people try to help!

Looks like I have to more clearly state the problem. The problem is that not only I'd like to have English switched on by default when I create new terminal window or switch to old terminal window, I'd also like to make impossible switching the language from English to Russian inside the terminal window.

Now, the results.

I've tried gxneur – looks like one has to build it from the sources, which I am not ready to try. I tried to install it with apt-get and could not figure out how to easily configure it. And it did not show the icon in the taskbar. So I removed it.

I've tried Python script and it immediately stops with following output:

No such schema 'org.gnome.desktop.input-sources'
Traceback (most recent call last):
  File "./set_language.py", line 63, in <module>
    lang_list = read_prev()
  File "./set_language.py", line 52, in read_prev
    currlang = get_lang()
  File "./set_language.py", line 24, in get_lang
    curr_n = int(get(key[1]+key[0]+key[4]).strip().split()[-1])
  File "./set_language.py", line 20, in get
    return subprocess.check_output(["/bin/bash", "-c", cmd]).decode("utf-8")
  File "/usr/lib/python3.2/subprocess.py", line 522, in check_output
    raise CalledProcessError(retcode, cmd, output=output)
subprocess.CalledProcessError: Command '['/bin/bash', '-c', 'gsettings get org.gnome.desktop.input-sources current']' returned non-zero exit status 1

Finally, I've tried the shell script, it runs, but does not seem to work – I still can easily switch to Russian in terminal. And it also once in a while says

No such schema 'org.gnome.desktop.input-sources'

So, all in all, I could not make any of the solutions work.

I guess the bottom line here is that what I'd like to get is not that simple, so it's ok to not have it.

Best Answer


Note on the answer below

The answer was originally written for 14.04, but rewritten January 6, 2017, to also work on (at least) 16.04 and 16.10. wmctrl is no longer needed.


Script to automatically set a different language for a single application.

enter image description here enter image description here

What it does

  • Running the script in the background, the user can set a different language for a specific application (in this case gnome-terminal). Just run the script and, with the application in front, set the desired language.
  • The language will be remembered, in the script (while running) as well as in a hidden file, to be remembered on the next time the script runs (on restart of the computer).
  • If the user sets focus to another application, the script switches back to the default language, whatever that was. Also the default language will be remembered, but user can change it any time (also the changed language is remembered)

Notes

  • The script uses an extended set of tools (functions) to take into account that user should be able to change the set of used languages, and the languages should be remembered, as suggested in the comment(s). Nevertheless it is very "light", since it only uses the function(s) when it is needed.

The script

#!/usr/bin/env python3
import subprocess
import time
import os
import ast

#--- set the "targeted" exceptional application below
app = "gnome-terminal"
#---

l_file = os.path.join(os.environ["HOME"], app+"_lang")
def_lang = os.path.join(os.environ["HOME"], "def_lang")
k = ["org.gnome.desktop.input-sources", "current", "sources"]

def get(cmd):
    # helper function
    try:
        return subprocess.check_output(cmd).decode("utf-8").strip()
    except subprocess.CalledProcessError:
        pass

def run(cmd):
    # helper function
    subprocess.Popen(cmd)

def front():
    # see if app has active window
    front = get(["xdotool", "getactivewindow"])
    data = get(["xprop", "-id", front])
    if all([front, data]):
        return app in get(["xprop", "-id", front])
    else:
        pass

def getlang():
    # get the currently set language (from index, in case the sources are changed)
    currindex = int(get(["gsettings", "get", k[0], k[1]]).split()[-1])
    return sources[currindex]

def get_stored(file):
    # read the set language
    return sources.index(ast.literal_eval(open(file).read().strip()))

def get_sources():
    return ast.literal_eval(get(["gsettings", "get", k[0], k[2]]))

sources = get_sources()
appfront1 = None
currlang1 = getlang()

while True:
    time.sleep(1)
    appfront2 = front()
    if appfront2 != None:
        currlang2 = getlang()
        # change of frontmost app (type)
        if appfront2 != appfront1:
            if appfront2:
                try:
                    run(["gsettings", "set", k[0], k[1], str(get_stored(l_file))])
                except FileNotFoundError:
                    open(l_file, "wt").write(str(currlang2))
            elif not appfront2:
                try:
                    run(["gsettings", "set", k[0], k[1], str(get_stored(def_lang))])
                except FileNotFoundError:
                    open(def_lang, "wt").write(str(currlang2))
        elif currlang2 != currlang1:
            f = l_file if appfront2 else def_lang
            open(f, "wt").write(str(currlang2))

        appfront1 = appfront2
        currlang1 = currlang2

How to use

  1. The script uses xdotool:

    sudo apt-get install xdotool
    
  2. Copy the script above into an empty file, save it as set_language.py

  3. Test-run it by the command:

    python3 /path/to/set_language.py
    

    While running the script:

    • set the (default) language.
    • open the (gnome-) terminal, set the language to be used with the terminal
    • Switch between the two and see if the language automatically switches.


    You can change both default language as the terminal language at any time. The set language(s) will be remembered.

  4. If all works as expected, add it to Startup Applications: Add to Startup Applications: Dash > Startup Applications > Add. Add the command:

    python3 /path/to/set_language.py
    

Explanation, the short (conceptual) story:

The script uses two files, to store the set languages for both the default language and the language, used in the exceptional application (gnome-terminal in this case, but you can set any application).

The script then periodically (once per second) does two tests:

  1. If the active window belongs to the exceptional application
  2. What is the currently set input language

The script compares the situation with the test(s) one second ago. Then if:

  1. there was a change in application:

    exceptional --> default: read language file for default language & set language. If the file does not exist (jet), create it, store the current language as default.
    default --> exceptional: the other way around.

  2. If there was a change in language (but not in window class):

    We may assume user set a different language for either the exceptional application or the default input language --> write the currently used input language into the according file (either for default language or the exceptional language).

Related Question