arama 0.36.1

Image / video viewer and similarity finder powered by offline AI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use iced::Settings;
use lucide_icons::LUCIDE_FONT_BYTES;

use super::App;

impl App {
    pub fn settings() -> Settings {
        Settings {
            fonts: vec![LUCIDE_FONT_BYTES.into()],
            ..Default::default()
        }
    }
}