-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OCGV: Add ability to minimize UI #116
Comments
I like the idea of being able to customize the UI, however, I wonder if |
Steve, is there a built-in way for PS cmdlets to take multiple options (OR) in a parameter? E.g. ocgv -UIOptions A | B | C |
@tig it can accept an array. ocgv -HideUIElement Filter,Frame,foo,bar The type of the parameter |
Based on this feedback I will revisit this PR using But, I will include a |
I'm not married to the name |
Or, iocgv -UI [All*, None, Filter, Headers, Frame, StatusBar] Where |
hmm... I'm not sure. If we go with |
Actually, I would love the -NoFrame, -NoFilter, and -NoStatusBar that were proposed. I very frequently desire some of those but not others. |
Fixed in #166 |
The window border, filter box, and status bar use valuable screen real estate. I'd like to have an option of not having it visible.
I considered having parameters for all of them:
-NoFrame
-NoFilter
-NoStatusBar
But that seems overkill. Instead, just:
-MinUI
I just pushed a change to Terminal.Gui that will enable hiding the statusbar. Then all that's needed is to change the logic that creates the
Window
to:The text was updated successfully, but these errors were encountered: