-
I'm generating some figures using GLVis that requires the use of the "function key" options, namely, F7, for setting the min and max of the color bar. I can do this interactively using the terminal without issue but is there a way to pass this as part of a bash command? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
There are two options:
Let me know if you need more details on either of the options. |
Beta Was this translation helpful? Give feedback.
-
It is hacky, but you can also provide the input directly from the command line. The function keys are encoded in the
you can do something like
|
Beta Was this translation helpful? Give feedback.
There are two options:
valuerange <min> <max>
.valuerange <min> <max>
works that way too.Let me know if you need more details on either of the options.