kuesji / link_eye

choose app before opening links in android
MIT License
39 stars 5 forks source link

Request: Linux version. #1

Closed Git-Forked closed 2 years ago

Git-Forked commented 2 years ago

Would it be possible you could make a Linux version of this app, preferably not using java language.
I find your Android app very useful, and would like to have an equivalent on my Linux systems.
Thank you.

kuesji commented 2 years ago

currently it is not on my roadmap. things will change in the future but i say "no" at the moment.

Efreak commented 2 years ago

This isn't really hard to do at all. I've got a basic script hacked together here. Change it to open with xdg-open --chooser if you want to pick what browser, or use sensible-browser, or modify the list of browsers in the script. Alternatively, you could use another dialog to set up a radio list. If you don't like whiptail, there's also zenity, (k|x|gtk)?dialog, yad, or read.

kuesji commented 2 years ago

porting this to linux isn't hard but getting it to work consistently is hard. default apps not protected on linux unlike android because of lack of proper sandbox on desktop and this leads to inconsistent behaviour on this kind of app. i don't like the idea of firefox/chromium popping instead of link eye due firefox/chromium messed with defaults.

otherwise i'll write a small gui application with c/gtk easily, not half-baked shellscript with whiptail,zenity or something like them.

Git-Forked commented 2 years ago

This isn't really hard to do at all. I've got a basic script hacked together here. Change it to open with xdg-open --chooser if you want to pick what browser, or use sensible-browser, or modify the list of browsers in the script. Alternatively, you could use another dialog to set up a radio list. If you don't like whiptail, there's also zenity, (k|x|gtk)?dialog, yad, or read.

Thanks @Efreak I'll check out your script when I next get a free day to fool around on the computer.