Native Gtk client for Lemmy
Go to file
Bnyro d0a1c2cd39 chore(readme): mark project as unmaintained 2024-02-12 10:52:32 +01:00
.github chore: add sponsoring info 2023-09-27 10:28:41 +02:00
build-aux Remove unneeded flatpak build options 2023-06-26 14:35:27 +02:00
data fix: typo in changelog 2024-01-06 12:05:31 +01:00
src feat: migrate to lemmy v0.19 (closes #33) 2024-01-06 11:30:55 +01:00
.gitignore Add script to prepare for flatpak build 2023-06-26 15:54:39 +02:00
Cargo.lock feat: migrate to lemmy v0.19 (closes #33) 2024-01-06 11:30:55 +01:00
Cargo.toml chore: prepare for v0.5.1 2024-01-06 11:34:28 +01:00
Dockerfile chore: switch to more up to date void linux docker image 2024-01-31 14:53:55 +01:00
LICENSE Add gpl-3.0 license 2023-06-18 16:55:09 +02:00
README.md chore(readme): mark project as unmaintained 2024-02-12 10:52:32 +01:00
flake.nix chore: prepare for v0.5.1 2024-01-06 11:34:28 +01:00
icon.svg chore: add original icon to repo 2023-10-23 16:11:17 +02:00
meson.build chore: prepare for v0.5.1 2024-01-06 11:34:28 +01:00
meson_options.txt Fix issues with the meson build 2023-06-26 11:38:25 +02:00
prepare-flatpak.sh chore: move flatpak vendor output to downloads folder 2023-08-25 13:18:35 +02:00
update-defaults.sh feat: migrate to lemmy v0.19 (closes #33) 2024-01-06 11:30:55 +01:00

README.md

This project is no longer maintained. If you're interested in taking over maintainership, please feel free to contact @Bnyro.

Lemoa

Native Gtk client for Lemmy (beta)

Installation

Platform Command
Flathub
AUR paru -S lemoa-git
Void Linux xbps-install -S lemoa

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

Screenshots

Features

  • Listing trending or subcribed posts
  • Viewing posts and their comments
  • Viewing own profile and other user accounts
  • Viewing and searching communities
  • Logging in with an account
  • Writing, editing and deleting posts or comments
  • {,Un-}Following communities
  • {Up,Down}-Voting posts or comments
  • Viewing the personal inbox (mentions, replies)
  • Reading and writing private messages
  • Saving posts and comments as bookmarks

Troubleshooting

Flatpak installation doesn't follow the system Gtk theme

In order to apply a different theme when using Flatpak, run

flatpak override --filesystem=/usr/share/themes/
flatpak override --env GTK_THEME=Adwaita-dark

You can replace Adwaita-dark with the name of any other Gtk theme you have installed.

If you don't use Flatpak, the correct Gtk Theme should be applied automatically.

Build dependencies

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

Building

Building with meson

meson --prefix="/usr" _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

Credits

License

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