this post was submitted on 03 Nov 2023
118 points (95.4% liked)

Linux

47237 readers
3343 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I just found out about AppImageLauncher, a package handler for AppImages. It organizes them, creates desktop files for you and handles updates and removal.

Integrate AppImages to your application launcher with one click, and manage, update and remove them from there. Double-click AppImages to open them, without having to make them executable first.

Much better than having to create all the desktop files myself, and having to figure out what to put in them for it to work correctly (I'm looking at you, qBittorrent and magnet links).

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 19 points 10 months ago* (last edited 10 months ago) (1 children)

AppImageLauncher caused me problems in the past, similar to in this post.

So I switched to appimaged and have never looked back.

An implementation of AppImage tools written in Go by the inventor of the AppImage format.

After uninstalling AppImageLauncher, I had to make sure that ~/.config/systemd/user/default.target.wants/appimagelauncherd.service was also removed!


BTW the last release of AppImageLauncher is from 2020!

[–] [email protected] 2 points 10 months ago (1 children)

Good looking out. I installed this and verified it's working, but does this automatically start at start up? I can't seem to get systemctl enable to work on it.

[–] [email protected] 3 points 10 months ago* (last edited 10 months ago) (1 children)

According to the uninstall instructions here: https://github.com/probonopd/go-appimage/blob/master/src/appimaged/README.md#initial-setup

appimaged should create the everything itself in order for auto start to work after launching it once via ~/Applications/appimaged-*.AppImage

e.g. systemctl --user status appimaged.service says that the service is enabled for me.

(Maybe you were missing the --user flag?)


I would follow the installation instructions and if that does not work, the uninstall instructions in reverse to create the service yourself (probably with systemctl --user enable --now appimaged.service)

[–] [email protected] 1 points 10 months ago

Oh awesome, yeah I was missing the user tag! Yeah all working now, thank you :)