mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2024-11-16 17:37:17 +03:00
Create typing-emulate.md
This commit is contained in:
parent
d0c48765cd
commit
be08d99f96
28
content/posts/typing-emulate.md
Normal file
28
content/posts/typing-emulate.md
Normal file
@ -0,0 +1,28 @@
|
||||
---
|
||||
title: Эмуляция ввода текста из буфера обмена
|
||||
description: Для GNU/Linux
|
||||
date: 2024-10-24T17:07:00+02:00
|
||||
tags: [linux]
|
||||
---
|
||||
## Установка и удалеие пакетов пакетов
|
||||
```shell
|
||||
dnf install xclip xdotool
|
||||
rpm --nodeps -e xdg-desktop-portal-gnome
|
||||
```
|
||||
|
||||
## Создание исполняемого файла
|
||||
|
||||
В файл `/usr/local/bin/easyclipboard` необходимо добавить следующее:
|
||||
|
||||
```config
|
||||
#!/bin/bash
|
||||
xclip -selection clipboard -out | tr \\n \\r | xdotool selectwindow windowfocus type --clearmodifiers --delay 25 --window %@ --file -
|
||||
```
|
||||
|
||||
```shell
|
||||
chmod +x /usr/local/bin/easyclipboard
|
||||
```
|
||||
|
||||
## ShortCut
|
||||
Далее необходимо забиндить исполняемый файл на какой-нибудь shortcut (например, `Ctrl+E`) и можно пользоваться.
|
||||
При нажатии комбинации клавиш текст из буфера обмена вводится по-буквенно (очень помогает с vnc/crd и подобным).
|
Loading…
Reference in New Issue
Block a user