Skip to content

Instantly share code, notes, and snippets.

View dojekon's full-sized avatar

Alexander dojekon

  • Saint-Petersburg
View GitHub Profile
@alimsk
alimsk / readme.md
Last active July 16, 2026 17:19
fix wine keyboard not working after alt-tabbing or switching app (lose focus)

do the following:

  • open regedit (type wine regedit in your terminal)
  • goto HKEY_CURRENT_USER\Software\Wine\X11 Driver.

if any of those key didn't exist, then create it by right clicking the node > new > key.

image showing how to create new key

and name it according to which key is missing. in my case, the X11 Driver didn't exist, so i create it:

@Bonno
Bonno / mp4-to-wav
Created February 10, 2015 09:24
Convert mp4 to WAV with ffmpeg
ffmpeg -i <infile> -ac 2 -f wav <outfile>