diff options
Diffstat (limited to 'niri-ipc/src/lib.rs')
| -rw-r--r-- | niri-ipc/src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/niri-ipc/src/lib.rs b/niri-ipc/src/lib.rs index f6086250..ebb0379e 100644 --- a/niri-ipc/src/lib.rs +++ b/niri-ipc/src/lib.rs @@ -323,6 +323,12 @@ pub enum Action { SwapWindowLeft {}, /// Toggle the focused column between normal and tabbed display. ToggleColumnTabbedDisplay {}, + /// Set the display mode of the focused column. + SetColumnDisplay { + /// Display mode to set. + #[cfg_attr(feature = "clap", arg())] + display: ColumnDisplay, + }, /// Center the focused column on the screen. CenterColumn {}, /// Center a window on the screen. |
