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/oxbow.core/Oxbow_core/Cli/index.html

Module Oxbow_core.CliSource

Sourceval log_level_arg : (string option * Logs.level) list Cmdliner.Term.t

log_level_arg is the --log-level option: one of error, warning, info, or debug. Default is info.

Sourceval socket_arg : string option Cmdliner.Term.t

socket is the --socket PATH common option: PATH overrides the resolved oxbow socket path.

Sourceval info : ?exits:Cmdliner.Cmd.Exit.info list -> ?man:Cmdliner.Manpage.block list -> ?man_xrefs:Cmdliner.Manpage.xref list -> ?version:string -> string -> doc:string -> Cmdliner.Cmd.info

info name ~doc is Cmdliner.Cmd.info with Exit.exits as the default exit information.

Sourceval help_term : 'a Cmdliner.Term.t

help_term shows the help of the main command. Pass it as the explicit ?default of the root command group.

Sourceval group : ?exits:Cmdliner.Cmd.Exit.info list -> ?man:Cmdliner.Manpage.block list -> ?man_xrefs:Cmdliner.Manpage.xref list -> ?version:string -> ?default:'a Cmdliner.Term.t -> name:string -> doc:string -> 'a Cmdliner.Cmd.t list -> 'a Cmdliner.Cmd.t

group ?exits ?man ?man_xrefs ?version ?default ~name ~doc cmds is the cmds command group. Cmdliner evaluates default when the command line names no subcommand. The fallback term renders the group's help.

Sourceval cmd : ?exits:Cmdliner.Cmd.Exit.info list -> ?man:Cmdliner.Manpage.block list -> ?man_xrefs:Cmdliner.Manpage.xref list -> ?version:string -> name:string -> doc:string -> 'a Cmdliner.Term.t -> 'a Cmdliner.Cmd.t

cmd ~name ~doc term is the command running term, with Exit.exits as the default exit information.