aboutsummaryrefslogtreecommitdiff
path: root/swaygrab
AgeCommit message (Collapse)AuthorLines
2016-01-17Copy filename from argvMikkel Oscar Lyderik-1/+1
Fix #449
2016-01-05Fix whitespace issues.Mikkel Oscar Lyderik-1/+1
2015-12-22swaygrab: Fix memory leak when recording videosJulien Savard-0/+1
2015-12-17swaygrab: add default output filename.Mikkel Oscar Lyderik-4/+23
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-17swaygrab: update man pageMikkel Oscar Lyderik-5/+9
2015-12-17swaygrab: make focused output defaultMikkel Oscar Lyderik-8/+47
This makes swaygrab use the currently focused output as source if no other output is defined with the `-o, --output <output>` option.
2015-12-14Move numlen(1) to sway/util.cMikkel Oscar Lyderik-10/+1
2015-12-02move manpages to subfoldersChristoph Gysin-0/+60
2015-12-02cmake: build common code only onceChristoph Gysin-5/+2
This creates (static) libraries for protocols/, common/, and wayland/.
2015-12-01cmake: remove subprojectsChristoph Gysin-4/+2
2015-12-01cmake: use out-of-source buildChristoph Gysin-2/+0
2015-12-01cmake: use tabs instead of spacesChristoph Gysin-7/+7
2015-12-01cmake: style consistencyChristoph Gysin-4/+8
2015-12-01cmake: convert all cmake commands to lowercaseChristoph Gysin-3/+3
2015-11-28Fix option parsingChristoph Gysin-4/+2
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-28swaygrab: Add --help option that prints usageChristoph Gysin-1/+3
2015-11-28swaygrab: Print usage and exit on unknown optionsChristoph Gysin-0/+12
2015-11-28Use macros for exit valuesChristoph Gysin-2/+2
2015-11-28Remove extraneous logging from swaygrabDrew DeVault-1/+0
2015-11-28Rearrange logging headersDrew DeVault-0/+1
Ref #270
2015-11-27Fix uninitialized variable warning in swaygrabDrew DeVault-1/+1
2015-11-27Add ffmpeg capture to swaygrab (with limitations)Drew DeVault-10/+104
This needs to be multithreaded to have any sort of realistic expectation of performance, due to issues with syncronous I/O.
2015-11-27Fix swaygrab memory leakDrew DeVault-0/+2
2015-11-27Implement swaygrab for still imagesDrew DeVault-6/+50
2015-11-27Add command line to swaygrabDrew DeVault-1/+54
Also modifies IPC client so that we can work with persistent connections.
2015-11-27Add swaygrab subprojectDrew DeVault-0/+28