1#!/usr/bin/env python
2# Copyright 2009-2017, Damian Johnson and The Tor Project
3# See LICENSE for licensing information
4
5import sys
6
7import nyx
8import nyx.curses
9
10if __name__ == '__main__':
11  if '--demo-glyphs' in sys.argv:
12    nyx.curses.demo_glyphs()
13  else:
14    nyx.main()
15