test again

This commit is contained in:
Haapy
2026-05-14 23:26:02 +00:00
parent b496914b3c
commit 6a4f4b4aa9
8 changed files with 160 additions and 96 deletions

View File

@@ -2,7 +2,9 @@ mod pty;
mod x11mod;
use pty::{pty_kill, pty_resize, pty_spawn, pty_write, PtyState};
use x11mod::{app_close, app_launch, app_set_geometry, app_set_visible, X11State};
use x11mod::{
app_close, app_launch, app_set_all_visible, app_set_geometry, app_set_visible, X11State,
};
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
@@ -27,6 +29,7 @@ pub fn run() {
app_launch,
app_set_geometry,
app_set_visible,
app_set_all_visible,
app_close,
])
.run(tauri::generate_context!())