formatting
This commit is contained in:
parent
592ed82593
commit
71748267fc
20
cmd/set.go
20
cmd/set.go
@ -29,47 +29,41 @@ func init() {
|
||||
"110",
|
||||
"purity for the setList search.",
|
||||
)
|
||||
setCmd.PersistentFlags().
|
||||
StringVarP(
|
||||
setCmd.PersistentFlags().StringVarP(
|
||||
&setCategories,
|
||||
"categories",
|
||||
"c",
|
||||
"010",
|
||||
"categories for the setList search.",
|
||||
)
|
||||
setCmd.PersistentFlags().
|
||||
StringVarP(
|
||||
setCmd.PersistentFlags().StringVarP(
|
||||
&setSorting,
|
||||
"sort",
|
||||
"s",
|
||||
"toplist",
|
||||
"sort by for results, valid sorts: date_added, relevance, random, views, favorites, setlist.",
|
||||
)
|
||||
setCmd.PersistentFlags().
|
||||
StringVarP(
|
||||
setCmd.PersistentFlags().StringVarP(
|
||||
&setOrder,
|
||||
"order",
|
||||
"o",
|
||||
"desc",
|
||||
"sort order for results, valid sorts: asc desc.",
|
||||
)
|
||||
setCmd.PersistentFlags().
|
||||
IntVarP(
|
||||
setCmd.PersistentFlags().IntVarP(
|
||||
&setPage,
|
||||
"maxPage",
|
||||
"m",
|
||||
5,
|
||||
"number of pages to randomly choose wallpaper from.",
|
||||
)
|
||||
setCmd.PersistentFlags().
|
||||
StringSliceVar(
|
||||
setCmd.PersistentFlags().StringSliceVar(
|
||||
&setRatios,
|
||||
"ratios",
|
||||
[]string{"16x9", "16x10"},
|
||||
"ratios to search for.",
|
||||
)
|
||||
setCmd.PersistentFlags().
|
||||
StringVar(
|
||||
setCmd.PersistentFlags().StringVar(
|
||||
&setAtLeast,
|
||||
"at-least",
|
||||
"2560x1440",
|
||||
@ -106,7 +100,7 @@ var (
|
||||
Use: "set",
|
||||
Aliases: []string{"s"},
|
||||
Args: cobra.RangeArgs(0, 1),
|
||||
Short: "query wallhaven with the provided parameters then download the image, set it as wallpaper, and generate colorscheme",
|
||||
Short: "Wallhaven downloader with the option to run a script after the image has been downloaded",
|
||||
RunE: func(cmd *cobra.Command, args []string) error {
|
||||
return set(args)
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user