docs: reflect that wofi is now default tool
This commit is contained in:
parent
39fd4fe0e7
commit
1bf0f31674
2 changed files with 3 additions and 3 deletions
|
@ -40,7 +40,7 @@ Pick an item from clipboard history
|
||||||
\fB--max-items=15\fR
|
\fB--max-items=15\fR
|
||||||
scrollview length
|
scrollview length
|
||||||
.TP
|
.TP
|
||||||
\fB-t, --tool="dmenu"\fR
|
\fB-t, --tool="wofi"\fR
|
||||||
Which selector to use: dmenu/bemenu/rofi/wofi/STDOUT
|
Which selector to use: dmenu/bemenu/rofi/wofi/STDOUT
|
||||||
.TP
|
.TP
|
||||||
\fB-T, --tool-args=""\fR
|
\fB-T, --tool-args=""\fR
|
||||||
|
@ -53,7 +53,7 @@ Remove item/s from history
|
||||||
\fB--max-items=15\fR
|
\fB--max-items=15\fR
|
||||||
scrollview length
|
scrollview length
|
||||||
.TP
|
.TP
|
||||||
\fB-t, --tool="dmenu"\fR
|
\fB-t, --tool="wofi"\fR
|
||||||
Which selector to use: dmenu/bemenu/rofi/wofi/STDOUT
|
Which selector to use: dmenu/bemenu/rofi/wofi/STDOUT
|
||||||
.TP
|
.TP
|
||||||
\fB-T, --tool-args=""\fR
|
\fB-T, --tool-args=""\fR
|
||||||
|
|
2
main.go
2
main.go
|
@ -27,7 +27,7 @@ var (
|
||||||
|
|
||||||
picker = app.Command("pick", "Pick an item from clipboard history")
|
picker = app.Command("pick", "Pick an item from clipboard history")
|
||||||
maxPicker = picker.Flag("max-items", "scrollview length").Default("15").Int()
|
maxPicker = picker.Flag("max-items", "scrollview length").Default("15").Int()
|
||||||
pickTool = picker.Flag("tool", "Which selector to use: wofi/bemenu/dmenu/rofi/wofi/STDOUT").Short('t').Default("wofi").String()
|
pickTool = picker.Flag("tool", "Which selector to use: wofi/bemenu/dmenu/rofi/STDOUT").Short('t').Default("wofi").String()
|
||||||
pickToolArgs = picker.Flag("tool-args", "Extra arguments to pass to the --tool").Short('T').Default("").String()
|
pickToolArgs = picker.Flag("tool-args", "Extra arguments to pass to the --tool").Short('T').Default("").String()
|
||||||
|
|
||||||
clearer = app.Command("clear", "Remove item(s) from history")
|
clearer = app.Command("clear", "Remove item(s) from history")
|
||||||
|
|
Loading…
Reference in a new issue