diff options
-rwxr-xr-x | bin/dispatch-conf | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/dispatch-conf b/bin/dispatch-conf index e000880f0..ec19e1e4d 100755 --- a/bin/dispatch-conf +++ b/bin/dispatch-conf @@ -215,6 +215,7 @@ class dispatch: show_new_diff = 0 while 1: + clear_screen() if show_new_diff: os.system((self.options['diff']) % (conf['new'], mrgconf)) show_new_diff = 0 @@ -377,6 +378,19 @@ def getch (): termios.tcsetattr(fd, termios.TCSADRAIN, old_settings) return ch +def clear_screen(): + try: + import curses + try: + curses.setupterm() + sys.stdout.write(curses.tigetstr("clear")) + sys.stdout.flush() + return + except curses.error: + pass + except ImportError: + pass + os.system("clear 2>/dev/null") # run d = dispatch () |