load mode list

This commit is contained in:
🪞👃🪞 2025-08-03 20:55:45 +03:00
parent 3c8616deba
commit e9f912f4d9
5 changed files with 137 additions and 116 deletions

View file

@ -41,6 +41,11 @@ impl App {
Stack::south(|add: &mut dyn FnMut(&dyn Render<TuiOut>)|{
add(&Tui::bold(true, "tek 0.3.0-rc0"));
add(&"");
for (name, _) in self.configs.profiles.read().unwrap().iter() {
add(&"");
add(&name);
}
add(&"");
add(&"+ new session");
})
}