You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/notigo/options.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,13 +18,13 @@ const (
18
18
19
19
typeoptionsstruct {
20
20
Keys []string`short:"k" long:"key" description:"List of key(s) to use" value-name:"KEY"`
21
-
KeysPaths []string`short:"K" long:"keys-path" description:"List of file path(s) that contains key(s)" value-name:"PATH"`
21
+
KeysPaths []string`short:"K" long:"keys-path" description:"List of file path(s) that contains key(s)" default-mask:"~/.config/notigo/keys if no key specified" value-name:"PATH"`
22
22
Eventstring`short:"e" long:"event" description:"Event key passed to IFTTT" default:"notigo" value-name:"EVENT"`
23
23
Titlestring`short:"t" long:"title" description:"Title of the notification(s)" value-name:"TITLE"`
24
24
Files []string`short:"f" long:"file" description:"List of file(s) used for content" value-name:"PATH"`
25
25
Mergebool`short:"m" long:"merge" description:"Content should be merged"`
26
26
MergeSepstring`short:"s" long:"merge-separator" description:"Separator used while merging content" default:"\n" value-name:"SEPARATOR"`
27
-
Delay time.Duration`short:"d" long:"delay" description:"Delay between two notification" default:"3s" value-name:"DELAY"`
27
+
Delay time.Duration`short:"d" long:"delay" description:"Delay between two notifications" default:"3s" value-name:"DELAY"`
28
28
Concurrentbool`short:"c" long:"concurrent" description:"Concurrently send notifications to the keys"`
0 commit comments