electron apps - based on Chromium browser

For groups of packages that don't all fall under the same category
Post Reply
Message
Author
User avatar
666philb
Posts: 3615
Joined: Sun 07 Feb 2010, 12:27
Location: wales ... by the sea

electron apps - based on Chromium browser

#1 Post 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
Attachments
snapshot-2020-07-07-19-25-38.png
(127.53 KiB) Downloaded 159 times
Bionicpup64 built with bionic beaver packages http://murga-linux.com/puppy/viewtopic.php?t=114311
Xenialpup64, built with xenial xerus packages http://murga-linux.com/puppy/viewtopic.php?t=107331

User avatar
jplt3
Posts: 118
Joined: Mon 08 Apr 2019, 20:40
Location: Planet Earth

#2 Post by jplt3 »

Thanks 666philb
JpLt

musher0
Posts: 14629
Joined: Mon 05 Jan 2009, 00:54
Location: Gatineau (Qc), Canada

#3 Post by musher0 »

What do they do differently?
Why use them?
musher0
~~~~~~~~~~
"You want it darker? We kill the flame." (L. Cohen)

User avatar
666philb
Posts: 3615
Joined: Sun 07 Feb 2010, 12:27
Location: wales ... by the sea

#4 Post 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.
Bionicpup64 built with bionic beaver packages http://murga-linux.com/puppy/viewtopic.php?t=114311
Xenialpup64, built with xenial xerus packages http://murga-linux.com/puppy/viewtopic.php?t=107331

User avatar
Mike Walsh
Posts: 6351
Joined: Sat 28 Jun 2014, 12:42
Location: King's Lynn, UK.

#5 Post 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:

musher0
Posts: 14629
Joined: Mon 05 Jan 2009, 00:54
Location: Gatineau (Qc), Canada

#6 Post by musher0 »

Yeah, that info will save me -- and perhaps a host of other people -- the trouble.
Thanks, Mike_Walsh.
BFN.
musher0
~~~~~~~~~~
"You want it darker? We kill the flame." (L. Cohen)

User avatar
666philb
Posts: 3615
Joined: Sun 07 Feb 2010, 12:27
Location: wales ... by the sea

#7 Post by 666philb »

FYI the ones i've tried run fine on a 2007 core2duo 4gb ram
Bionicpup64 built with bionic beaver packages http://murga-linux.com/puppy/viewtopic.php?t=114311
Xenialpup64, built with xenial xerus packages http://murga-linux.com/puppy/viewtopic.php?t=107331

User avatar
Mike Walsh
Posts: 6351
Joined: Sat 28 Jun 2014, 12:42
Location: King's Lynn, UK.

#8 Post 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:

Post Reply