logo

scripts

A bunch of scripts, some to be moved to their own repository git clone https://hacktivis.me/git/scripts.git

interface.py (240B)


  1. #!/usr/bin/python3
  2. # -*- encoding: utf-8 -*-
  3. import curses
  4. screen = curses.initscr()
  5. screen.clear()
  6. winStream = curses.newwin(0, 0)
  7. winStream.addstr("""Testing windows in curses""")
  8. winStream.refresh()
  9. winStream.getkey()
  10. curses.endwin()