Skip to content

Commit

Permalink
Add note 3 to rocoto viewer section
Browse files Browse the repository at this point in the history
- Note 3 states that TERM=xterm is the only supported TERM.
- Include bash example of shell function to automatically
switch if user is in different terminal.

Refs NOAA-EMC#1272
  • Loading branch information
KateFriedman-NOAA committed Jan 31, 2023
1 parent 3f9b701 commit 6be2182
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/source/monitor_rocoto.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,19 @@ Usage

Note 2: The viewer requires the full path to the database and xml files if you are not in your EXPDIR when you invoke it.

Note 3: Only ``TERM=xterm`` is supported. You may wish to create a shell function to switch automatically if you are in a different terminal:

Bash example:

::

function rv {
oldterm=${TERM};
export TERM='xterm';
${PATH_TO_VIEWER}/rocoto_viewer.py $@;
export TERM=${oldterm};
}

*********************
What the viewer shows
*********************
Expand Down

0 comments on commit 6be2182

Please sign in to comment.