sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit b7b734f311aaefba4e5760ac4feaa33631ef5111
parent 6f53322774a55c2887103153b73ff46f8f0634ed
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon, 28 Mar 2016 16:15:40 -0400

Merge pull request #549 from Hummer12007/patch-1

Add -R option to getopt opt_string
Diffstat:
Mswaygrab/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/swaygrab/main.c b/swaygrab/main.c @@ -182,7 +182,7 @@ int main(int argc, char **argv) { int c; while (1) { int option_index = 0; - c = getopt_long(argc, argv, "hco:vs:r", long_options, &option_index); + c = getopt_long(argc, argv, "hco:vs:R:r", long_options, &option_index); if (c == -1) { break; }