package oxbow
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
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.core/scheme.ml.html
Source file scheme.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 36type t = | Even [@name "even"] | Diminish [@name "diminish"] | Dwindle [@name "dwindle"] | Spiral [@name "spiral"] | Deck [@name "deck"] | Monocle [@name "monocle"] [@@deriving yojson] let all = [ Even; Diminish; Dwindle; Spiral; Deck; Monocle ] let to_string = function | Even -> "even" | Diminish -> "diminish" | Dwindle -> "dwindle" | Spiral -> "spiral" | Deck -> "deck" | Monocle -> "monocle" ;; let of_string s = match String.trim s |> String.lowercase_ascii with | "even" -> Some Even | "diminish" -> Some Diminish | "dwindle" -> Some Dwindle | "spiral" -> Some Spiral | "deck" -> Some Deck | "monocle" -> Some Monocle | _ -> None ;; let cycle t (dir : Direction.Logical.t) = match dir with | Next -> Ring.next_or_first t all |> Option.get | Prev -> Ring.prev_or_last t all |> Option.get ;;
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>