From de99ca342992dcc916c50f678b9000da303d6d51 Mon Sep 17 00:00:00 2001 From: a Date: Sun, 25 Dec 2022 23:23:12 -0600 Subject: [PATCH] fix --- cmd/bspc/cli.go | 57 ------------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 cmd/bspc/cli.go diff --git a/cmd/bspc/cli.go b/cmd/bspc/cli.go deleted file mode 100644 index cb01b10..0000000 --- a/cmd/bspc/cli.go +++ /dev/null @@ -1,57 +0,0 @@ -package main - -import "tuxpa.in/t/wm/src/cmd" - -type Api struct { - Node Node `name:"node" cmd:"node"` - Desktop Desktop `name:"desktop" cmd:"desktop"` -} - -type NodeSel string -type Node struct { - NODE_SEL NodeSel `name:"NODE_SEL" arg:"" default:"focused" optional:"" help:"default is focused"` - Focus NodeFocus `name:"focus" cmd:"focus"` - // Activate NodeSel `name:"activate" cmd:"activate"` - // ToDesktop NodeSel `name:"to-desktop" cmd:"to-desktop"` -} - -type NodeFocus struct { -} - -func (n *NodeFocus) Run(ctx *cmd.Context) error { - panic("not implemented") // TODO: Implement -} - -func (n *Node) Run(ctx *cmd.Context) error { - panic("not implemented") // TODO: Implement -} - -type Desktop struct { - DESKTOP_SEL string `name:"DESKTOP_SEL"` -} - -func (d *Desktop) Run(ctx *cmd.Context) error { - panic("not implemented") // TODO: Implement -} - -type Monitor struct { - MONITOR_SEL string `name:"MONITOR_SEL"` -} - -type Query struct { -} - -type Wm struct { -} - -type Rule struct { -} - -type Config struct { -} - -type Subscribe struct { -} - -type Quit struct { -}