Created
December 12, 2019 08:06
-
-
Save zhanser1k/e4c2be931bc3f062124e0828cbeecdc0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Задержка смены раскладки клавиатуры | |
**1.** Качаем скрипт: [https://github.com/yamnikov-oleg/switch-layout](https://github.com/yamnikov-oleg/switch-layout) | |
**2.** Устанавливаем pip: | |
``` | |
sudo apt install python3-pip | |
``` | |
**3.** Устанавливаем модуль pynput для того, чтобы скрипт мог читать нажатия клавиш: | |
``` | |
python3 -m pip install --user pynput==1.4 | |
``` | |
**4.** Кладём файл *switch-layout.py* в какую-нибудь папку внутри домашней (например, в созданную скрытую папку *.fix*). | |
**5.** Отключаем переключение раскладок в параметрах системы. | |
**6.** Запускаем скрипт: | |
``` | |
python3 /home/user/.fix/switch-layout.py | |
``` | |
**7.** Если всё работает добавляем эту строку в автозагрузку. | |
> В автозагрузке желательно указать полный путь до скрипта без знака "~", иначе он может не запускаться при старте, тогда сменить раскладку с помощью сочетания клавиш будет нельзя. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment