feat: display witchcraft

This commit is contained in:
2025-03-03 19:20:28 +00:00
parent 898caf1430
commit cde0752da2
12 changed files with 659 additions and 169 deletions

View File

@ -8,6 +8,7 @@ mod start;
mod liner;
mod download_handler;
mod appdata;
mod display;
use closure::closure;
use appdata::AppData;
@ -100,6 +101,7 @@ pub async fn run(_args: Vec<String>) {
cmd::install_package,
cmd::delete_package,
cmd::toggle_package,
cmd::list_profiles,
cmd::init_profile,
cmd::load_profile,
@ -107,9 +109,13 @@ pub async fn run(_args: Vec<String>) {
cmd::save_current_profile,
cmd::read_profile_data,
cmd::write_profile_data,
cmd::startline,
cmd::kill,
cmd::list_platform_capabilities,
cmd::set_cfg,
cmd::list_displays,
])
.run(tauri::generate_context!())
.expect("error while running tauri application");