diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-12-28 10:14:02 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-12-30 20:12:37 +0300 |
| commit | 5b4750a009a9ce1d3c98045c18509b1157e5519b (patch) | |
| tree | e135f66fee5c5d3b4e6abb950b500cda55e01b99 /niri-ipc | |
| parent | ad50dd21fea1912b9e21fb66a22fce517dac3aee (diff) | |
| download | niri-5b4750a009a9ce1d3c98045c18509b1157e5519b.tar.gz niri-5b4750a009a9ce1d3c98045c18509b1157e5519b.tar.bz2 niri-5b4750a009a9ce1d3c98045c18509b1157e5519b.zip | |
Add focus-floating/tiling actions
Diffstat (limited to 'niri-ipc')
| -rw-r--r-- | niri-ipc/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/niri-ipc/src/lib.rs b/niri-ipc/src/lib.rs index c3878941..fea7543f 100644 --- a/niri-ipc/src/lib.rs +++ b/niri-ipc/src/lib.rs @@ -470,6 +470,10 @@ pub enum Action { #[cfg_attr(feature = "clap", arg(long))] id: Option<u64>, }, + /// Switches focus to the floating layout. + FocusFloating {}, + /// Switches focus to the tiling layout. + FocusTiling {}, /// Toggles the focus between the floating and the tiling layout. SwitchFocusBetweenFloatingAndTiling {}, } |
