Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-09-11 | fixes a hanging swaygrab | Markus Ongyerth | |
https://github.com/SirCmpwn/sway/issues/1350 is fixed with this. The commit that change swaygrab to use fork instead of Popen tried to write to the read end of the pipe in the child branch and exec in the parent branch. This commit fixes both of those and closes the write fd after writing, so convert actually exits. | |||
2017-08-27 | Use fork in swaygrab instead of popen. | Clar Charr | |
2017-06-17 | FFmpeg options for swaygrab | David Blajda | |
2017-06-06 | FreeBSD fixes | johalun | |
Increase _POSIX_SOURCE value where needed. Increase _XOPEN_SOURCE value where needed. Conditionally link to libcap (only on Linux). Possibly some trailing whitespace fixes (automatic). | |||
2017-04-26 | Add -DVERSION flag for release version numbers | Sebastian Noack | |
2017-03-10 | UnGNUify the codebase | Drew DeVault | |
2016-09-18 | implement "focused container" feature for swaygrab | Zandr Martin | |
2016-03-28 | Added -R option to getopt opt_string | Hummer12007 | |
2016-02-26 | Correctly exit sway on errors. | Mikkel Oscar Lyderik | |
Calling `exit` in sway_terminate prevents sway from correctly shutting down (freeing data, cleanly terminating the ipc server, etc.). A better way is to exit straight away if the failure occurs before `wlc_run` and use sway_abort as usual if it occur when wlc is running. | |||
2016-01-23 | Revert "s/numlen/log10/g" | Drew DeVault | |
This reverts commit 038bb8cc7c4dee77f8ee4ba3ac1ffc47409b2370. | |||
2016-01-23 | s/numlen/log10/g | Drew DeVault | |
2016-01-17 | Copy filename from argv | Mikkel Oscar Lyderik | |
Fix #449 | |||
2016-01-05 | Fix whitespace issues. | Mikkel Oscar Lyderik | |
2015-12-22 | swaygrab: Fix memory leak when recording videos | Julien Savard | |
2015-12-17 | swaygrab: add default output filename. | Mikkel Oscar Lyderik | |
With this it's possible to run `swaygrab` without a filename argument. With no filename supplied it will use a default name based on the current time. The default file will get the extension `png` for screenshots and `webm` for video capture. | |||
2015-12-17 | swaygrab: make focused output default | Mikkel Oscar Lyderik | |
This makes swaygrab use the currently focused output as source if no other output is defined with the `-o, --output <output>` option. | |||
2015-12-14 | Move numlen(1) to sway/util.c | Mikkel Oscar Lyderik | |
2015-11-28 | Fix option parsing | Christoph Gysin | |
Using 'flag' results in duplicate code paths for short and long options. This broke the -q short option in swaymsg, because there was: {"quiet", no_argument, &quiet, 'q'} Which will set quiet to 'q' and return 0, not 'q'. | |||
2015-11-28 | swaygrab: Add --help option that prints usage | Christoph Gysin | |
2015-11-28 | swaygrab: Print usage and exit on unknown options | Christoph Gysin | |
2015-11-28 | Use macros for exit values | Christoph Gysin | |
2015-11-28 | Remove extraneous logging from swaygrab | Drew DeVault | |
2015-11-28 | Rearrange logging headers | Drew DeVault | |
Ref #270 | |||
2015-11-27 | Fix uninitialized variable warning in swaygrab | Drew DeVault | |
2015-11-27 | Add ffmpeg capture to swaygrab (with limitations) | Drew DeVault | |
This needs to be multithreaded to have any sort of realistic expectation of performance, due to issues with syncronous I/O. | |||
2015-11-27 | Fix swaygrab memory leak | Drew DeVault | |
2015-11-27 | Implement swaygrab for still images | Drew DeVault | |
2015-11-27 | Add command line to swaygrab | Drew DeVault | |
Also modifies IPC client so that we can work with persistent connections. | |||
2015-11-27 | Add swaygrab subproject | Drew DeVault | |