petoncle

Results 18 comments of petoncle

Both KMonad and warpd use the same keyboard hook (`SetWindowsHookEx(WH_KEYBOARD_LL)`), but I think that should not necessarily mean they can't work together. I believe the order in which the keyboard...

@wirekang Thanks a lot for making mouseable. After reading @atlasshruggedbyaynrand's excellent suggestions I tried to implement them myself in mouseable. It all started as a fork of mouseable but then,...

That's because you are decompressing only one block (you should call `compressedInputStream .read()` more than once). Instead of: ```java byte[] decompressedData = new byte[data.length]; compressedInputStream.read(decompressedData); ``` Try: ```java byte[] decompressedData...

Currently, there seems to be 2 maintainers (jpountz and odaira). One of them said they no longer have time for lz4-java, and the other has not responded to @mentions from...

Hi @mulaRahul, I've also experienced the same problem with the drag key sometimes not going away (other keys too, actually). Right now, I can systematically reproduce it with keyviz 2.0.0-alpha,...

Is your jar file a runnable jar, does it contain a manifest file with a Main-Class entry? Are you sure the users are running the .exe file and not the...

> I did need to set "jniVersion": 8 in my config.json Which Java version did you need to set it for?

@karlsabo I've had a look around and found that [Eclipse's icon setting tool for Windows](https://github.com/eclipse/rt.equinox.p2/blob/master/bundles/org.eclipse.equinox.p2.publisher.eclipse/src/org/eclipse/pde/internal/swt/tools/IconExe.java) looks promising since it is made in pure Java. It would be nice to list...

> That Eclipse code looks promising, I wonder if it's published as a JAR to a Maven repository somewhere, could make the work pretty straight forward. It seems to be...

I've tried Eclipse's IconExe and apparently it replaces existing icons of a .exe file. It can't add icons, it just replaces. Is there any way we can generate the launcher...