6

cross-posted from: https://lemmy.world/post/27601594

cross-posted from: https://lemmy.world/post/27385536

I have a rather large Python script that I use as basically a replacement for autohotkey. It uses pynput for keyboard and mouse control - and at least on Windows, it works exactly how I expect.

I recently started dual-booting with Linux and have been trying to get the script to work here as well. It does work but with mixed results - in particular, I found that pynput has bizarrely wrong output for special characters, in a way that's both consistent and inconsistent.

The simplest possible case I found that reproduces the error is this script:

import time
from pynput import keyboard

# Sleep statement is just to give time to move the mouse cursor to a text input field
time.sleep(2)

my_kb = keyboard.Controller()

text = '๐Ÿ†' # Eggplant emoji
my_kb.type(text)

time.sleep(1)

text = '๐•ฅ๐•–๐•ค๐•ฅ' # blackboard bold test
my_kb.type(text)

time.sleep(1)

text = '๐ญ๐ž๐ฌ๐ญ' # bold test
my_kb.type(text)

When I run that script right now, it produces the output "๐Ÿ†๐•ฅ๐•ฅ๐•ค๐•ฅ๐ญ๐ญ๐ฌ๐ญ". And if I run it again, it'll produce the same output. And if I change the eggplant emoji to something else, like the regular character 'A', it will still produce the same output (specifically "A๐•ฅ๐•ฅ๐•ค๐•ฅ๐ญ๐ญ๐ฌ๐ญ"). But... If I log out and log back in, then the output changes to something else that's still wrong, but differently. For example, when I changed the eggplant to a regular 'A', then relogged, the output became "A๐•ฅ๐•–๐•–๐•ฅ๐ญ๐ž๐ž๐ญ". And then that wrong output will keep being the same wrong output until I log out and back in again. If the test strings don't change, then the incorrect outputs don't change on relog - but if they do, then they do.

In the larger script, errors seemed to chain together somehow - like if I produced an eggplant emoji, then tried to write blackboard bold test, I would get "๐Ÿ†๐•–๐•ค๐Ÿ†". This is despite verifying just before running the pynput.keyboard.Controller.type function that what it was about to type was correct. The issue also happens if I type it character-by-character with press and release functions.

I am very new to Linux. I'm on Linux Mint. I'm running this in a python3 venv that just has pynput and two other external libraries installed. ChatGPT thinks the issue might be related to X11. The issue does not occur at all on Windows, using the exact same code. On Linux there seems to be no issues with typing regular text, just special characters.

top 1 comments
sorted by: hot top controversial new old
[-] DeltaWingDragon@sh.itjust.works 2 points 5 days ago* (last edited 5 days ago)

It could be a race condition: Check how long it takes between printing/typing each piece of text. Then try changing the length of the sleep statements, or removing them.

It could be overlapping text: Add a \n in each of your strings.

It could be some weird variable reuse issue: Print/type the strings directly, or use uniquely named variables (text1, text2, text3).

this post was submitted on 31 Mar 2025
6 points (100.0% liked)

linux4noobs

1576 readers
1 users here now

linux4noobs


Noob Friendly, Expert Enabling

Whether you're a seasoned pro or the noobiest of noobs, you've found the right place for Linux support and information. With a dedication to supporting free and open source software, this community aims to ensure Linux fits your needs and works for you. From troubleshooting to tutorials, practical tips, news and more, all aspects of Linux are warmly welcomed. Join a community of like-minded enthusiasts and professionals driving Linux's ongoing evolution.


Seeking Support?

Community Rules

founded 2 years ago
MODERATORS