raeleus / skin-composer

Create skins for LibGDX scene2d.ui with a graphical interface.
MIT License
427 stars 34 forks source link

xprop: command not found #117

Closed mttkay closed 2 years ago

mttkay commented 2 years ago

It looks like Skin Composer shells out to xprop on Linux when opening a file chooser.

[19:15:53] ~ java -jar bin/skin-composer-linux/lib/app/SkinComposer.jar 
sh: line 1: xprop: command not found

I'm on Fedora 35, and xprop was not installed. I suspect because it's an X11 tool, and Fedora ships Wayland by default, which the wider Linux community is starting to adopt.

The issue is fixable by installing xprop, e.g.:

sudo dnf install xprop

This should probably be pointed out in the installation instructions, or perhaps not be relied on going forward.

raeleus commented 2 years ago

I use TinyFileDialogs for those dialogs. I'll test the alternative available in LWJGL. It that doesn't work, I'll just put up a disclaimer. Thanks.

mttkay commented 2 years ago

Appreciate it, thanks!