You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have implemented custom commands for my layout to adjust the size for my main pain. Is it possible to output text to the overlay so I can display the size after each command is executed?
commands:
commands: {command1: {description: "Increase main window height",updateState: (state,focusedWindowID)=>{return{ ...state,mainWindowHeightRatio: Math.min(state.mainWindowHeightRatio+0.05,0.75)};}},command2: {description: "Decrease main window height",updateState: (state,focusedWindowID)=>{return{ ...state,mainWindowHeightRatio: Math.max(state.mainWindowHeightRatio-0.05,0.25)};}}},
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have implemented custom commands for my layout to adjust the size for my main pain. Is it possible to output text to the overlay so I can display the size after each command is executed?
commands:
Beta Was this translation helpful? Give feedback.
All reactions