x11 icon indicating copy to clipboard operation
x11 copied to clipboard

An x11 protocol implementation and client for the jvm

Results 11 x11 issues
Sort by recently updated
recently updated
newest added

``` Exception in thread "main" java.lang.UnsupportedOperationException: Not supported at java.base/sun.nio.ch.SocketChannelImpl.socket(SocketChannelImpl.java:233) at com.github.moaxcp.x11.x11client.X11Connection.connect(X11Connection.java:118) at com.github.moaxcp.x11.x11client.X11Connection.connect(X11Connection.java:145) at com.github.moaxcp.x11.x11client.X11Client.connect(X11Client.java:83) ``` To reproduce ```java try(X11Client client = X11Client.connect(new DisplayName(":1"))) { } catch (IOException e)...