mini95. A minimal, "almost" dependency-free dmenu clone. With a Windows 95 theme.

The code can be found by clicking here. Save it as mini95.c, then compile this with "gcc mini95.c -lX11 -o mini95".

41 points · 3 comments · view on lemmy.world

3 Comments

JubilantJaguar@lemmy.world · 3 pts · 231d (2 replies)

Tangential. I tried everything to replicate the basic function of an app launcher in a terminal - i.e. launch a GUI app while leaving the terminal unaffected and have the app survive without spontaneous combustion at some random point later - before finally giving up. Yes, background process. Yes, disown. Yes, redirect all output to null. Yes, nohup. Yes, every combination of the above. Nothing really worked. So I now have a mystical reverence for the people who write app launchers.

Remus86@lemmy.zip · 2 pts · 230d (1 reply)

In X11 you can just use 'exec app-name' and it will replace the terminal window with the app. In Wayland, I got it to work with this:

setsid app-name & disown
sleep 1
exit

Without the 'sleep 1', it exits the terminal too quickly for the app to launch, at least when I tried it.

*Edit: In order for it to work as a script, you still need to type exec first. Or, in my case, I aliased "open-app" to "exec open-app".

JubilantJaguar@lemmy.world · 1 pts · 229d

Yeah, thanks, been to all these places already,sleep included (except setsid in Wayland but I doubt that's the crucial issue). And yes it does work, sort of - the problem is that the apps exit spontaneously at some point later - sometimes hours, sometimes days - which absolutely does not happen when I launch them in whatever "official" way. In the end I just gave up. Needing a sleep hack is a bit of a red flag after all.