I am using newt/snack (a TUI graphical Widgit library for Python based on slang) to have some interactive scripts. However for some target terminals the output of those screens are not very nice. I can change the look of them by changing the $TERM variable to remove non printable characters, and to convert them to something more suitable. For example:

TERM=linux python myscript.py

So far the values I tested for $TERM, yielded only moderate success.

Is there a known value for $TERM that consistently converts graphical characters:

┌────────────┤ Title ├────────────┐
│                                 │
│ Some text for the entry window  │
│                                 │
│   foo _______________________   │
│   bar _______________________   │
│   baz _______________________   │
│                                 │
│    ┌────┐        ┌────────┐     │
│    │ Ok │        │ Cancel │     │
│    └────┘        └────────┘     │
│                                 │
└─────────────────────────────────┘

into non graphical characters:

+------------| Title |------------+
|                                 |
| Some text for the entry window  |
|                                 |
|   foo _______________________   |
|   bar _______________________   |
|   baz _______________________   |
|                                 |
|    +----+        +--------+     |
|    | Ok |        | Cancel |     |
|    +----+        +--------+     |
|                                 |
+---------------------------------+
link|improve this question

68% accept rate
feedback

1 Answer

It might be based on your $LANG being set to something like en_US.UTF-8. Try changing it to en_US (assuming your base locale is en_US).

link|improve this answer
Thanks for your suggestion, but I had no luck changing LANG to en, en_US, en_US.latin1, C or any other value I could think of. – Chen Levy Jan 10 '11 at 10:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.