diff --git a/docs/clipman.1 b/docs/clipman.1 index 4e52777..6a61fc3 100644 --- a/docs/clipman.1 +++ b/docs/clipman.1 @@ -40,7 +40,7 @@ Pick an item from clipboard history \fB--max-items=15\fR scrollview length .TP -\fB-t, --tool="dmenu"\fR +\fB-t, --tool="wofi"\fR Which selector to use: dmenu/bemenu/rofi/wofi/STDOUT .TP \fB-T, --tool-args=""\fR @@ -53,7 +53,7 @@ Remove item/s from history \fB--max-items=15\fR scrollview length .TP -\fB-t, --tool="dmenu"\fR +\fB-t, --tool="wofi"\fR Which selector to use: dmenu/bemenu/rofi/wofi/STDOUT .TP \fB-T, --tool-args=""\fR diff --git a/main.go b/main.go index cf37eae..ca6774d 100644 --- a/main.go +++ b/main.go @@ -27,7 +27,7 @@ var ( picker = app.Command("pick", "Pick an item from clipboard history") 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() clearer = app.Command("clear", "Remove item(s) from history")