notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 5490c513db866561c746295c0a163a766caf070c
parent ba8397616614893a8dcf18a32a4393c15c3b6c8e
Author: kernelkind <kernelkind@gmail.com>
Date:   Mon, 13 Oct 2025 20:50:16 -0400

assets: add accounts image

Signed-off-by: kernelkind <kernelkind@gmail.com>

Diffstat:
Aassets/icons/accounts_4x.png | 0
Mcrates/notedeck_ui/src/app_images.rs | 4++++
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/assets/icons/accounts_4x.png b/assets/icons/accounts_4x.png Binary files differ. diff --git a/crates/notedeck_ui/src/app_images.rs b/crates/notedeck_ui/src/app_images.rs @@ -15,6 +15,10 @@ pub fn profile_image() -> Image<'static> { Image::new(include_image!("../../../assets/icons/profile.png")) } +pub fn accounts_image() -> Image<'static> { + Image::new(include_image!("../../../assets/icons/accounts_4x.png")) +} + pub fn cln_image() -> Image<'static> { Image::new(include_image!("../../../assets/icons/clnlogo.svg")) }