Add installer / uninstaller for Linux

This commit is contained in:
Disyer
2026-03-17 05:26:58 +02:00
parent 50409fdd83
commit 6dc1f86ee3
14 changed files with 201 additions and 151 deletions
@@ -2,6 +2,13 @@
mod install_flags;
mod install_form;
#[cfg(windows)]
#[path = "installer_windows.rs"]
mod installer;
#[cfg(not(windows))]
#[path = "installer_linux.rs"]
mod installer;
use install_form::{InstallForm, HEIGHT, WIDTH};