darealshinji

Results 154 comments of darealshinji

I also think that very common X11 libs should be excluded by default (libx11, libext6; but not the libxcb* stuff or "rare" libraries that are usually not installed or even...

> Well, on my Debian unstable, libcairo2, which is a dependency of GTK2 and 3 among a lot of things, depends on libxcb, libxcb-shm and libxcb-render. Basically, I see not...

Here's a first list based on what's installed on my system and what's available since Ubuntu 12.04: https://gist.github.com/darealshinji/21f368ddb61f4d3cfa303e228bb0e9db It would of course be a good idea to check if these...

KDEnlive is now provided as an AppImage: https://kdenlive.org/download/ MediaInfo AppImages are a work in progress: https://github.com/MediaArea/MediaArea-Utils/commit/8b00c71a7aae851409bc3b0b2fafad5a9fe14d2a Update: XnViewMP AppImage: http://newsgroup.xnview.com/viewtopic.php?f=82&t=34581

What about adding your own copy of a dialog program? YAD is lightweight, portable and depends only on GTK2 libs. Or I could try to write something using [fltk](http://www.fltk.org/index.php), similar...

Here's a very simple dialog tool using fltk: https://gist.github.com/darealshinji/74985e3474574fc2bee456555a27b517 Note: fltk uses C++ Runtime dependencies in this case are: ``` libX11.so.6 libXext.so.6 libpthread.so.0 libXinerama.so.1 libXfixes.so.3 libXcursor.so.1 libXft.so.2 libXrender.so.1 libfontconfig.so.1 libdl.so.2...

The problem here is KDE. Qt dialogs have a native look and feel to KDE but not to other environments, and they may not even run unless Qt libraries are...

A little update: https://gist.github.com/darealshinji/fe1845d4c90d62eee92c6bcf2860d2c3 ![shot](https://user-images.githubusercontent.com/5700937/27207975-055b18fe-5243-11e7-939e-2c613739ed70.png) I hope this looks better. Options are: ``` --title=TITLE --message=MESSAGE --button1=LABEL --button2=LABEL ``` Use only `--button2` if you want just 1 button. By the way,...

What about a radio button list, so you would only need 1 window to pop up? ![list](https://user-images.githubusercontent.com/5700937/27473703-5603e4da-5800-11e7-867a-fa7b5763feae.png) Though I must admit that all solutions have a "lot of" text, which...

Here's my new draft, including an attempt to do some localization. Usage is `./appimage_dialog AppName` [source](https://gist.github.com/darealshinji/fe1845d4c90d62eee92c6bcf2860d2c3) ![dlg](https://user-images.githubusercontent.com/5700937/27507781-c7f22544-58d6-11e7-93c5-d74e6061cc8b.png)