gled 2.1.1

gled is an application for creating animations and effects on artnet or wled light installations
1
2
3
4
5
6
7
8
9
use crate::ui::logo::icon;
use egui::ViewportBuilder;

pub fn default_viewport_builder() -> ViewportBuilder {
    ViewportBuilder::default()
        .with_title("Gled")
        .with_app_id("de.photonenkollektiv.gled")
        .with_icon(icon())
}