__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# ImConfig.py (c) 2012-2020 Canonical # Author: Gunnar Hjalmarsson <[email protected]> # # Released under the GPL # import os import subprocess import locale class ImConfig(object): def __init__(self): pass def available(self): return os.path.exists('/usr/bin/im-config') def getAvailableInputMethods(self): inputMethods = sorted(subprocess.check_output(['im-config', '-l']).decode().split()) inputMethods.append('none') return inputMethods def getCurrentInputMethod(self): (systemConfig, userConfig, autoConfig) = \ subprocess.check_output(['im-config', '-m']).decode().split()[:3] if userConfig != 'missing': return userConfig """ no saved user configuration fall back to the system configuration """ system_conf = '' if systemConfig == 'default': system_conf = autoConfig elif os.path.exists('/etc/X11/xinit/xinputrc'): for line in open('/etc/X11/xinit/xinputrc'): if line.startswith('run_im'): system_conf = line.split()[1] break if not system_conf: system_conf = autoConfig return system_conf def setInputMethod(self, im): subprocess.call(['im-config', '-n', im]) if __name__ == '__main__': im = ImConfig() print('available input methods: %s' % im.getAvailableInputMethods()) print('current method: %s' % im.getCurrentInputMethod()) print("setting method 'fcitx'") im.setInputMethod('fcitx') print('current method: %s' % im.getCurrentInputMethod()) print('removing ~/.xinputrc') im.setInputMethod('REMOVE')
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| gtk | Folder | 0755 |
|
|
| ImConfig.py | File | 1.69 KB | 0644 |
|
| LangCache.py | File | 6.06 KB | 0644 |
|
| LanguageSelector.py | File | 4.17 KB | 0644 |
|
| LocaleInfo.py | File | 12.56 KB | 0644 |
|
| __init__.py | File | 3 B | 0644 |
|
| macros.py | File | 5.27 KB | 0644 |
|
| utils.py | File | 1.63 KB | 0644 |
|
| xkb.py | File | 3.25 KB | 0644 |
|