package oxbow

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file cmd_window_rule_list.ml

1
2
3
4
5
6
7
8
9
10
open! Oxbow_ipc

let name = "list"
let doc = "List the window rules"

let cmd =
  Ctl_cli.cmd ~name ~doc
  @@ Ctl_cli.query_term ~render:Ctl_cli.render_lines
  @@ Cmdliner.Term.const Query.Window_rules
;;