Page 1 of 1

electron apps - based on Chromium browser

Posted: Tue 07 Jul 2020, 18:36
by 666philb
a nice repository of electron apps https://www.electronjs.org/apps

the appimages once down loaded need, right click>>>permissions>>>a+x (Make executable/searchable) and then left click to run.

some of them need running with

Code: Select all

--no-sandbox

Code: Select all

/path/to/app --no-sandbox
or here's a script you can drag and drop them onto if they need it

Code: Select all

#!/bin/sh
exec "$@" --no-sandbox

Posted: Wed 08 Jul 2020, 07:35
by jplt3
Thanks 666philb

Posted: Wed 08 Jul 2020, 07:59
by musher0
What do they do differently?
Why use them?

Posted: Wed 08 Jul 2020, 11:19
by 666philb
musher0 wrote:What do they do differently?
Why use them?
a lot of them are appimages and will work on many different pups/OS's & even cross platform. There's some quite unusual apps there as well that you won't find in a package manager.

Posted: Wed 08 Jul 2020, 12:56
by Mike Walsh
Cheers, Phil. I've got an idea I came across this site a while ago, but it's gotten a whole lot bigger now...
musher0 wrote:What do they do differently?
Why use them?
I'll say this here & now, musher, and save you the trouble. You won't be interested in these, I can guarantee that.

Why?

Simple. Because every single one of these runs around a stripped-back instance of the Chromium browser - that's what an Electron 'app' is. And the way they're built, you can't have, say, half-a-dozen of these Electron apps sharing a single browser instance. That's NOT how they work.

You want half-a-dozen of these running at the same time, you've got half-a-dozen browsers running at the same time! Each one launches its own 'instance' of the Chromium browser. Wasteful, perhaps.....but they're ultimately intended for folks that put convenience above system resources, and don't care how much RAM is used.

These things are really meant for powerful, modern systems with multi-core processors (4-8 minimum), and buckets of RAM - 8-16 GB minimum.


Mike. :wink:

Posted: Wed 08 Jul 2020, 15:26
by musher0
Yeah, that info will save me -- and perhaps a host of other people -- the trouble.
Thanks, Mike_Walsh.
BFN.

Posted: Wed 08 Jul 2020, 15:34
by 666philb
FYI the ones i've tried run fine on a 2007 core2duo 4gb ram

Posted: Thu 09 Jul 2020, 20:36
by Mike Walsh
Out of several I've tried, one graphics app sticks out for ease-of-use & works on every 64-bit Puppy I've thrown it at:-

Lightgallery

It's a lightweight image viewer with slideshow capabilities, very neatly put together.....something like a combination of Geeqie & Viewnior, with a lot of options. I'm that impressed with it, I'd make it my default viewer if only I could figure out how to make it fire-up actually showing the file I've opened it with.....


Mike. :wink: