package oxbow

  1. Overview
  2. Docs
Dynamic window manager for the river Wayland compositor

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.1.0.tar.gz
md5=a637acaa0e19046cd65fff733874eb97
sha512=76230cbecd7510de7a05b5d1f335915ef7b6c4aa557d8dbfd23591606618d2cfa25082d17b93f2f4b53a118d1cbf6a80e4ad51cf0f099b4921fb83d6df0c9801

doc/src/oxbow.ipc/command.ml.html

Source file command.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
open! Ppx_yojson_conv_lib.Yojson_conv
open! Oxbow_core

module Border = struct
  type t =
    | Width of int32 [@name "width"]
    | Color of
        { which : Border_target.t
        ; color : Color.t
        } [@name "color"]
  [@@deriving yojson]
end

module Config = struct
  type t = Reset of { all : bool } [@name "reset"] [@@deriving yojson]
end

module Gaps = struct
  type t =
    | Inner of
        { delta : int Delta.t
        ; scope : Scope.t
        } [@name "inner"]
    | Outer of
        { delta : int Delta.t
        ; scope : Scope.t
        } [@name "outer"]
    | Overview of
        { delta : int Delta.t
        ; scope : Scope.t
        } [@name "overview"]
  [@@deriving yojson]
end

module Input = struct
  module Cursor = struct
    type t =
      | Theme of
          { name : string
          ; size : int32
          } [@name "theme"]
    [@@deriving yojson]
  end

  module Keyboard = struct
    type t =
      | Repeat of
          { rate : int
          ; delay : int
          } [@name "repeat"]
      | Layout_file of string [@name "layout_file"]
    [@@deriving yojson]
  end

  module Pointer = struct
    type t =
      | Follow of Focus_follows_policy.t [@name "follow"]
      | Cycle_follow [@name "cycle_follow"]
      | Warp of bool [@name "warp"]
      | Toggle_warp [@name "toggle_warp"]
    [@@deriving yojson]
  end

  type t =
    | Cursor of Cursor.t [@name "cursor"]
    | Keyboard of Keyboard.t [@name "keyboard"]
    | Pointer of Pointer.t [@name "pointer"]
    | Touchpad of Input_rule.Touchpad.t Input_rule.rule [@name "touchpad"]
    | Mouse of Input_rule.Mouse.t Input_rule.rule [@name "mouse"]
    | Rule_add of Input_rule.t [@name "rule_add"]
    | Rule_remove of int list [@name "rule_remove"]
  [@@deriving yojson]
end

module Keymap = struct
  module Mode = struct
    type t =
      | Declare of string [@name "declare"]
      | Enter of string [@name "enter"]
    [@@deriving yojson]
  end

  type t = Mode of Mode.t [@name "mode"] [@@deriving yojson]
end

module Layout = struct
  module Scrolling = struct
    type t =
      | Select of
          { align : Align.t
          ; scope : Scope.t
          } [@name "select"]
      | Align of
          { align : Align.t
          ; scope : Scope.t
          } [@name "align"]
      | Default_width of
          { delta : float Delta.t
          ; scope : Scope.t
          } [@name "default_width"]
      | Orientation of
          { dir : Direction.Spatial.t
          ; scope : Scope.t
          } [@name "orientation"]
    [@@deriving yojson]
  end

  module Tiling = struct
    type t =
      | Cycle of Direction.Logical.t [@name "cycle"]
      | Mfact of
          { delta : float Delta.t
          ; scope : Scope.t
          } [@name "mfact"]
      | Nmaster of
          { delta : int Delta.t
          ; scope : Scope.t
          } [@name "nmaster"]
      | Orientation of
          { dir : Direction.Spatial.t
          ; scope : Scope.t
          } [@name "orientation"]
      | Select of
          { scheme : Scheme.t
          ; scope : Scope.t
          } [@name "select"]
      | Scheme of
          { scheme : Scheme.t
          ; scope : Scope.t
          } [@name "scheme"]
    [@@deriving yojson]
  end

  module Floating = struct
    type t =
      | Seed of
          { seed : Extent.t
          ; scope : Scope.t
          } [@name "seed"]
    [@@deriving yojson]
  end

  type t =
    | Cycle of Direction.Logical.t [@name "cycle"]
    | Select of
        { layout : Layout.t
        ; scope : Scope.t
        } [@name "select"]
    | Scrolling of Scrolling.t [@name "scrolling"]
    | Tiling of Tiling.t [@name "tiling"]
    | Floating of Floating.t [@name "floating"]
  [@@deriving yojson]
end

module Output = struct
  module Swap = struct
    module Target = struct
      type t =
        | Pair of
            { first : string option [@yojson.option]
            ; second : string option [@yojson.option]
            } [@name "pair"]
        | Ring of
            { members : string list
            ; rev : bool
            } [@name "ring"]
      [@@deriving yojson]
    end

    type t =
      | Tags of
          { target : Target.t
          ; policy : Tag.Policy.t
          ; follow : bool
          } [@name "swap_tags"]
      | All of
          { target : Target.t
          ; policy : Tag.Policy.t
          ; follow : bool
          } [@name "swap_all"]
      | Visible of
          { target : Target.t
          ; policy : Tag.Policy.t
          ; follow : bool
          } [@name "swap_visible"]
    [@@deriving yojson]
  end

  type t =
    | Column_width of float Delta.t [@name "column_width"]
    | Focus_logical of
        { dir : Direction.Logical.t
        ; warp : bool option [@yojson.option]
        } [@name "focus_logical"]
    | Focus_spatial of
        { dir : Direction.Spatial.t
        ; warp : bool option [@yojson.option]
        } [@name "focus_spatial"]
    | Focus_match of
        { target : Target.Output.One.t
        ; warp : bool option [@yojson.option]
        } [@name "focus_name"]
    | Toggle_overview [@name "toggle_overview"]
    | Cycle_overview of
        { dir : Direction.Logical.t
        ; until_release : string option
        } [@name "overview_cycle"]
    | Swap of Swap.t [@name "swap"]
    | Label_add of
        { label : string
        ; target : Target.Output.Any.t
        } [@name "label_add"]
    | Label_remove of
        { label : string
        ; target : Target.Output.Any.t
        } [@name "label_remove"]
  [@@deriving yojson]
end

module Scratchpad = struct
  type t = Toggle of string [@name "toggle"] [@@deriving yojson]
end

module Session = struct
  type t = Exit [@name "exit"] [@@deriving yojson]
end

module Tag = struct
  type t =
    | View of Tag.Arg.t [@name "view"]
    | Toggle_view of Tag.Set.t [@name "toggle_view"]
    | View_previous [@name "view_previous"]
    | View_cycle of Direction.Logical.t [@name "view_cycle"]
    | View_cycle_occupied of Direction.Logical.t [@name "view_cycle_occupied"]
  [@@deriving yojson]
end

module Window = struct
  type t =
    | Close of Target.Window.Any.t [@name "close"]
    | Focus_logical of
        { dir : Direction.Logical.t
        ; warp : bool option [@yojson.option]
        ; target : Target.Window.One.t
        } [@name "focus_logical"]
    | Focus_spatial of
        { dir : Direction.Spatial.t
        ; warp : bool option [@yojson.option]
        ; target : Target.Window.One.t
        } [@name "focus_spatial"]
    | Focus_match of
        { warp : bool option [@yojson.option]
        ; target : Target.Window.One.t
        } [@name "focus_match"]
    | Tag of
        { tags : Oxbow_core.Tag.Arg.t
        ; follow : bool
        ; target : Target.Window.Any.t
        } [@name "tag"]
    | Tag_shift of
        { dir : Direction.Logical.t
        ; follow : bool
        ; target : Target.Window.Any.t
        } [@name "tag_shift"]
    | Tag_shift_occupied of
        { dir : Direction.Logical.t
        ; follow : bool
        ; target : Target.Window.Any.t
        } [@name "tag_shift_occupied"]
    | Move_drag [@name "move_drag"]
    | Move_to of
        { x : Extent.t
        ; y : Extent.t
        ; target : Target.Window.Any.t
        } [@name "move_to"]
    | Move_spatial of
        { dir : Direction.Spatial.t
        ; by : Extent.t
        ; target : Target.Window.Any.t
        } [@name "move_spatial"]
    | Resize_drag [@name "resize_drag"]
    | Resize_to of
        { w : Extent.t
        ; h : Extent.t
        ; target : Target.Window.Any.t
        } [@name "resize_to"]
    | Resize_spatial of
        { dir : Direction.Spatial.t
        ; by : Extent.t
        ; target : Target.Window.Any.t
        } [@name "resize_spatial"]
    | Send_logical of
        { dir : Direction.Logical.t
        ; policy : Oxbow_core.Tag.Policy.t
        ; follow : bool
        ; target : Target.Window.Any.t
        } [@name "send_logical"]
    | Send_spatial of
        { dir : Direction.Spatial.t
        ; policy : Oxbow_core.Tag.Policy.t
        ; follow : bool
        ; target : Target.Window.Any.t
        } [@name "send_spatial"]
    | Send_name of
        { name : string
        ; policy : Oxbow_core.Tag.Policy.t
        ; follow : bool
        ; target : Target.Window.Any.t
        } [@name "send_name"]
    | Shift of
        { dir : Direction.Logical.t
        ; target : Target.Window.One.t
        } [@name "shift"]
    | Toggle_tag of
        { tags : Oxbow_core.Tag.Set.t
        ; target : Target.Window.Any.t
        } [@name "toggle_tag"]
    | Toggle_floating of Target.Window.Any.t [@name "toggle_floating"]
    | Toggle_maximize of Target.Window.One.t [@name "toggle_maximize"]
    | Toggle_fullscreen of Target.Window.One.t [@name "toggle_fullscreen"]
    | Toggle_fake_fullscreen of Target.Window.Any.t [@name "toggle_fake_fullscreen"]
    | Set_sticky of
        { scope : Sticky.t
        ; target : Target.Window.Any.t
        } [@name "set_sticky"]
    | Toggle_sticky of
        { toggle : Sticky.Toggle.t
        ; target : Target.Window.Any.t
        } [@name "toggle_sticky"]
    | Toggle_swallow of Target.Window.Any.t [@name "toggle_swallow"]
    | Zoom of
        { warp : bool option [@yojson.option]
        ; target : Target.Window.One.t
        } [@name "zoom"]
    | Column_consume of Target.Window.One.t [@name "column_consume"]
    | Column_release of Target.Window.One.t [@name "column_release"]
    | Column_move of
        { dir : Direction.Logical.t
        ; target : Target.Window.One.t
        } [@name "column_move"]
    | Column_width of
        { delta : float Delta.t
        ; target : Target.Window.One.t
        } [@name "column_width"]
    | Column_width_default of Target.Window.One.t [@name "column_width_default"]
    | Column_width_cycle of Target.Window.One.t [@name "column_width_cycle"]
    | Rule_add of Window_rule.t [@name "rule_add"]
    | Rule_remove of int list [@name "rule_remove"]
    | Label_add of
        { label : string
        ; target : Target.Window.Any.t
        } [@name "label_add"]
    | Label_remove of
        { label : string
        ; target : Target.Window.Any.t
        } [@name "label_remove"]
    | Spawn_position of Spawn_position.t [@name "spawn_position"]
    | Spawn_focus of bool [@name "spawn_focus"]
    | Drag_retile of bool [@name "drag_retile"]
    | Scratchpad_set of
        { name : string
        ; target : Target.Window.Any.t
        } [@name "scratchpad_set"]
    | Scratchpad_clear of { target : Target.Window.Any.t } [@name "scratchpad_clear"]
  [@@deriving yojson]
end

module Wm = struct
  type t = Close [@name "close"] [@@deriving yojson]
end

type t =
  | Border of Border.t [@name "border"]
  | Config of Config.t [@name "config"]
  | Exec of string array [@name "exec"]
  | Gaps of Gaps.t [@name "gaps"]
  | Input of Input.t [@name "input"]
  | Keymap of Keymap.t [@name "keymap"]
  | Layout of Layout.t [@name "layout"]
  | Output of Output.t [@name "output"]
  | Scratchpad of Scratchpad.t [@name "scratchpad"]
  | Session of Session.t [@name "session"]
  | Spawn of string [@name "spawn"]
  | Tag of Tag.t [@name "tag"]
  | Window of Window.t [@name "window"]
  | Wm of Wm.t [@name "wm"]
[@@deriving yojson]