https://github.com/pkgforge-dev/ladybird-appimage
🐞 ⚙️ AppImage for Ladybird Browser [Maintainer=@psadi]
https://github.com/pkgforge-dev/ladybird-appimage
Last synced: 1 day ago
JSON representation
🐞 ⚙️ AppImage for Ladybird Browser [Maintainer=@psadi]
- Host: GitHub
- URL: https://github.com/pkgforge-dev/ladybird-appimage
- Owner: pkgforge-dev
- Created: 2025-09-14T12:17:35.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2026-03-22T09:34:44.000Z (12 days ago)
- Last Synced: 2026-03-23T00:40:21.993Z (11 days ago)
- Language: Shell
- Homepage:
- Size: 67.4 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Ladybird AppImage
This repository provides build scripts to create a Universal AppImage for [Ladybird](https://ladybird.org/). This unofficial build offers an executable AppImage compatible with any Linux distribution (Including musl based).
## ⚙️ Installation
1. Command Line (Manual)
Run the following commands in your terminal:
```bash
# Download the latest AppImage package from releases
wget https://github.com/pkgforge-dev/ladybird-appimage/releases/download/${VERSION}/Ladybird-${VERSION}-${ARCH}.AppImage
# Make the AppImage executable
chmod +x Ladybird-${VERSION}-${ARCH}.AppImage
# Run the AppImage
./Ladybird-${VERSION}-${ARCH}.AppImage
# Optionally, add the AppImage to your PATH for easier access
# With sudo for system wide availability
sudo install ./Ladybird-${VERSION}-${ARCH}.AppImage /usr/local/bin/ladybird
# Without sudo, XDG base spec mandate
install ./Ladybird-${VERSION}-${ARCH}.AppImage $HOME/.local/bin/ladybird
# Now you can run Ladybird from anywhere using the command:
ladybird
```
1. Using [**AM**](https://github.com/ivan-hc/AM) or [**AppMan**](https://github.com/ivan-hc/AppMan) _(Choose one as appropriate)_
```bash
# Install
am -i ladybird
# Upgrade
am -u ladybird
# Uninstall
am -r ladybird
```
## ⏫ Updating
Since AppImages are self-contained executables, there is no formal installation process beyond setting executable permissions.
1. Download the latest AppImage package from the [releases](https://github.com/pkgforge-dev/ladybird-appimage/releases) section.
1. Follow the same steps as in the [Installation](#installation) section to make it executable and run it.
## 🤝 Contributing
Contributions & Bugfixes are welcome. If you like to contribute, please feel free to fork the repository and submit a pull request.
For any questions or discussions, please open an issue in the repository.