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: src/main.rs
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -50,17 +50,16 @@ struct Args {
50
50
51
51
#[structopt(
52
52
short = "p",
53
-
long = "program",
53
+
long = "programs",
54
54
value_name = "COMMAND",
55
-
help = r#"Sends image as argument to command specified. Use alongside listener or custom. If the command itself contains arguments, wrap in quotation ex. dyn-wall-rs -a /path/to/dir -l "betterlockscreen -u"
56
-
If arguments after wallpaper argument are needed, use !WALL as a placeholder for wallpaper argument, and add rest of arguments ex. dyn-wall-rs -a /path/to/dir -p "betterlockscreen -u !WALL -b 1""#
55
+
help = r#"Sends image as argument to command specified. Use alongside listener or custom. If the command itself contains arguments, wrap in quotation ex. dyn-wall-rs -a /path/to/dir -l "betterlockscreen -u""#
57
56
)]
58
57
program:Option<Vec<String>>,
59
58
60
59
#[structopt(
61
60
short,
62
61
long,
63
-
value_name = "COMMAND",
62
+
value_name = "DIRECTORY",
64
63
help = "Will present you with a schedule of when your wallpaper will change if you have not set custom times in the config file"
0 commit comments