image viewer and maybe editor; inspired by mpv's simplicity
  • Rust 81.9%
  • Nix 18.1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
electria 6b4af8cd7d
refactor: use iced 0.15 rich clipboard
it does use arboard internally,
and yet somehow it's able to copy huge (25MB) images.

either way, it's nicer to use stuff built into iced
instead of dealing with the Clipboard object ourselves.
2026-08-28 12:28:45 -07:00
LICENSES init basic image viewer 2026-06-28 10:14:56 -07:00
src refactor: use iced 0.15 rich clipboard 2026-08-28 12:28:45 -07:00
.envrc init basic image viewer 2026-06-28 10:14:56 -07:00
.gitignore init basic image viewer 2026-06-28 10:14:56 -07:00
Cargo.lock refactor: use iced 0.15 rich clipboard 2026-08-28 12:28:45 -07:00
Cargo.toml refactor: use iced 0.15 rich clipboard 2026-08-28 12:28:45 -07:00
flake.lock init basic image viewer 2026-06-28 10:14:56 -07:00
flake.nix fix: missing svg mime type in desktopItem 2026-08-14 11:36:40 -07:00
README.md docs: add readme 2026-08-03 11:27:29 -07:00
REUSE.toml init basic image viewer 2026-06-28 10:14:56 -07:00

imagey

image viewer and maybe editor; inspired by mpv's simplicity

name is subject to change, suggestions welcome :)

usage

# try it out!
nix run git+https://git.federated.nexus/electria/imagey

# install it imperatively
nix profile install git+https://git.federated.nexus/electria/imagey

keybinds are shown on startup if you didn't start it with an image

known issues

JXL

  1. encoding is not implemented (jxl-oxide is decoding-only)

  2. oreintation is incorrect in some cases

    if the image has metadata oreintation AND

    it's a jxl without the right extension OR it's a jpeg with the jxl extension

    this is due to the JXL decoder automatically rotating the image, while the JPEG decoder (for instance) requires the extra step.

    my workaround is to check the path of the input file, not changing the oreintation if it has the jxl extension; causing these caveats for cases where the extension is wrong.

clipboard

  1. large images (eg photos) don't seem to copy on linux/wayland, (despite set_image not returning any error)