add icons

This commit is contained in:
2026-08-07 08:11:54 +07:00
parent b137f54a66
commit a734141837
107 changed files with 440 additions and 3 deletions
+1
View File
@@ -9,6 +9,7 @@ name = "signed"
path = "src/main.rs"
[dependencies]
assets = { path = "../crates/assets" }
paths = { path = "../crates/paths" }
signed_state = { path = "../crates/signed_state" }
workspace = { path = "../crates/workspace" }
+6
View File
@@ -1,5 +1,6 @@
use std::sync::Arc;
use assets::Assets;
use gpui::*;
use gpui_platform::application;
@@ -8,8 +9,13 @@ fn main() {
tracing_subscriber::fmt::init();
application()
.with_assets(Assets)
.with_http_client(Arc::new(reqwest_client::ReqwestClient::new()))
.run(move |cx| {
// Set app identity
cx.set_app_identity("su.reya.signed", "Signed");
// Initialize components
gpui_component::init(cx);
// Initialize backend and stores (connects relays, restores session)