Native Gtk client for Lemmy
Go to file
Bnyro f4036ed655 Reorganize Readme and add flathub link 2023-06-28 21:16:05 +02:00
.vscode Add flatpak metadata and improve meson system 2023-06-26 13:32:03 +02:00
build-aux Remove unneeded flatpak build options 2023-06-26 14:35:27 +02:00
data Reorganize Readme and add flathub link 2023-06-28 21:16:05 +02:00
src Validate instance urls for more user convenience 2023-06-28 12:00:50 +02:00
.gitignore Add script to prepare for flatpak build 2023-06-26 15:54:39 +02:00
Cargo.lock Inbox: support for private messages 2023-06-28 11:42:20 +02:00
Cargo.toml Inbox: support for private messages 2023-06-28 11:42:20 +02:00
Dockerfile Reorganize Readme and add flathub link 2023-06-28 21:16:05 +02:00
LICENSE Add gpl-3.0 license 2023-06-18 16:55:09 +02:00
README.md Reorganize Readme and add flathub link 2023-06-28 21:16:05 +02:00
build-flatpak.sh Improve flatpak build script 2023-06-26 17:02:12 +02:00
flake.lock add flake.nix 2023-06-26 15:58:25 -04:00
flake.nix add nix develop support 2023-06-26 16:02:54 -04:00
meson.build Fix meson/flatpak builds 2023-06-26 16:55:58 +02:00
meson_options.txt Fix issues with the meson build 2023-06-26 11:38:25 +02:00

README.md

lemoa

Native Gtk client for Lemmy (beta)

Installation

Platform Command
Flathub

If you don't use any of these platforms, consider building the app from source.

Features

  • Listing trending posts
  • Viewing a post and its comments
  • Viewing profiles
  • Viewing trending communities
  • Searching communities
  • Logging in with an account
  • Writing posts or comments
  • Viewing subscribed posts
  • Following communities
  • Voting for or against posts or comments
  • Editing and deleting posts or comments
  • Viewing the personal inbox (mentions, replies)
  • Private messages

Build dependencies

  • rust
  • cargo
  • pkg-config
  • libgtk-4-dev or gtk4-devel (name depends on the distro)

Building

Building with meson

meson _build
ninja -C _build
sudo ninja -C _build install

Building with Docker

sudo docker build --no-cache . -t lemoa:latest
CONTAINER_ID=$(sudo docker create --name lemoa -t lemoa:latest)
sudo docker cp $(CONTAINER_ID):/root/lemoa/target/release/lemoa .

Once the build is done, there will be an executable lemoa binary file in your current directory, executing it starts Lemoa 🎉.

Building the binary only

Not recommended: To only install the binary (can only be started with the terminal), run

cargo install --git https://github.com/lemmygtk/lemoa.git

You can then start the app via the terminal after adding cargo's bin directory to your PATH variable.

Development

Clone the repository and run

cargo run

License

Lemoa is licensed under the GNU General Public License: You can use, study and share it as you want.