docs: reflect that wofi is now default tool

This commit is contained in:
yory8 2020-02-18 20:44:15 +01:00
parent 39fd4fe0e7
commit 1bf0f31674
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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")