Skip to content

erikvillegas/termOS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

termOS

termOS is a Swift wrapper over Termbox. It also provides a UIKit-like interface that makes it super simple to create colorful and interactive command-line programs.

Example:

override func viewDidLoad() {
    super.viewDidLoad()
        
    let headerLabel = Label(text: "Hello!")
    headerLabel.frame = Frame(x: 0, y: 0, width: view.frame.width, height: 1)
    headerLabel.textColor = .White
    headerLabel.backgroundColor = .Cyan
    headerLabel.textAlignment = .Center
      
    view.addSubview(headerLabel)
}

alt text

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published