This commit is contained in:
2025-08-24 14:41:12 +02:00
parent 9f39481cb4
commit e7a36f47e8
7 changed files with 360 additions and 374 deletions

View File

@@ -4,7 +4,11 @@
import freeflowuniverse.herolib.osal.tmux
mut t := tmux.new()!
t.session_delete('main')!
println(t)
if !t.is_running()! {
t.start()!
}
if t.session_exist('main') {
t.session_delete('main')!
}
t.window_new(name: 'test', cmd: 'mc', reset: true)!
println(t)