summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
* Make protocol specifications follow the DTDLibravatar Mikkel Oscar Lyderik2016-02-27
| | | | | | Gets rid of these warnings: WARNING: XML failed validation against built-in DTD
* Correctly exit sway on errors.Libravatar Mikkel Oscar Lyderik2016-02-26
| | | | | | | | 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.
* Merge pull request #494 from gpyh/argsegfaultLibravatar Drew DeVault2016-02-25
|\ | | | | Fix segfault when trying to use sway as IPC without a sway instance
| * Fix for when sway_abort doesn't exitLibravatar Yacine Hmito2016-02-25
| | | | | | | | sway_terminate does an exit in case wlc_terminate doesn't
| * Fixed swaymsg command name in sway(5) docLibravatar Yacine Hmito2016-02-25
| |
| * No options when using sway as IPC clientLibravatar Yacine Hmito2016-02-25
| | | | | | | | | | | | | | | | Sway used to attempt sending an IPC command composed of every argument after the first non-option argument encountered. Now, raises an error if an option is encountered before the intended command. Some options such as -h or -v take effect when parsing, so they still apply.
| * Removed p as a valid CLI optionLibravatar Yacine Hmito2016-02-25
|/ | | | | | The get-socketpath long option had an undocumented short alternative as `p`. It has been removed. However, the code in the options array is still the 'p' char.
* Merge pull request #493 from mikkeloscar/view-behind-swaylockLibravatar Drew DeVault2016-02-25
|\ | | | | Don't rearrange views behind swaylock.
| * Don't rearrange views behind swaylock.Libravatar Mikkel Oscar Lyderik2016-02-25
|/ | | | Fix #481
* Check for empty ws on view destroyed.Libravatar Mikkel Oscar Lyderik2016-02-25
| | | | | | | In some cases destroying a view can result in an empty and inactive workspace, which should be destroyed. This handles those cases.
* Send workspace ICP event on ws destroy/empty.Libravatar Mikkel Oscar Lyderik2016-02-25
| | | | | | There is no 'destroy' change type in the i3 IPC so this uses `empty` to notify about empty workspaces (which will be destroyed from sway right after).
* Prevent crash when showing scratchpad on new ws.Libravatar Mikkel Oscar Lyderik2016-02-25
| | | | Fix #469
* Fix ipc event bit masksLibravatar Mikkel Oscar Lyderik2016-02-21
|
* Prefer named output config over wildcard config.Libravatar Mikkel Oscar Lyderik2016-02-12
| | | | | | | | | | | | | | This makes sure that a named output config is applied before the general wildcard config when a new output is created. This ensures that the config: output * ... output NAME ... behaves the same way as: output NAME ... output * ...
* Merge pull request #488 from mikkeloscar/get-pixelsLibravatar Drew DeVault2016-02-08
|\ | | | | Replace deprecated function wlc_output_get_pixels.
| * Replace deprecated function wlc_output_get_pixels.Libravatar Mikkel Oscar Lyderik2016-02-08
|/ | | | | | | | | | | This makes IPC GET_PIXELS use the new `wlc_pixels_read` call instead of the deprecated `wlc_output_get_pixels`. The old version worked by passing a callback function to wlc which would grab the pixels and send them to the IPC client. The new version works by maintaining a list of clients who have requested the pixels of some output and then grap and send the pixels in the output_post_render hook of the `wlc_interface`.
* Squash trailing whitespaceLibravatar Mikkel Oscar Lyderik2016-02-08
|
* Fix clang warningsLibravatar Mikkel Oscar Lyderik2016-02-08
|
* Add wlc-render.h to handlers.cLibravatar Drew DeVault2016-02-08
|
* Merge pull request #486 from SethBarberee/sway-zshLibravatar Mikkel Oscar Lyderik2016-02-08
|\ | | | | refactored sway command to include single dash
| * fixed config helpLibravatar Seth Barberee2016-02-01
| |
| * refactored to include single dashLibravatar Seth Barberee2016-01-31
|/
* use tabsLibravatar Mikkel Oscar Lyderik2016-01-29
|
* Improve _swaymsg and _swaygrab completionsLibravatar Mikkel Oscar Lyderik2016-01-29
|
* Autocomplete scale optionsLibravatar Mikkel Oscar Lyderik2016-01-29
|
* complete image, not colorLibravatar Mikkel Oscar Lyderik2016-01-29
|
* Add files completion to _swaylockLibravatar Mikkel Oscar Lyderik2016-01-29
|
* Merge pull request #483 from aouelete/zsh-swaylock-completionLibravatar Mikkel Oscar Lyderik2016-01-29
|\ | | | | zsh completions for swaylock
| * zsh completions for swaylockLibravatar Aaron Ouellette2016-01-28
|/
* Merge pull request #482 from crondog/movemouseLibravatar Drew DeVault2016-01-28
|\ | | | | commands: move position mouse
| * commands: move position mouseLibravatar crondog2016-01-28
| | | | | | | | | | Bounds checking works ok except it overlaps the bar. Just like with normal floating. Should be fixed once swaybar is fixed.
* | Print /proc/<pid>/maps on segfaultLibravatar Drew DeVault2016-01-28
| |
* | Merge pull request #480 from crondog/swaylocktrans2Libravatar Drew DeVault2016-01-27
|\ \ | |/ |/| swaylock: Allow for transparent color values
| * swaylock: Allow for transparent color valuesLibravatar crondog2016-01-28
|/ | | | | | | | There is only a slight issue. When using a transparent color the views are arranged to make room for swaylock which we can now see. I tried removing the arrange call but that just made it worse by putting in an opaque view on the workspace and not making the lockoverlay color. Ill raise an issue if this is not easily solved
* Merge pull request #479 from crondog/fontLibravatar Drew DeVault2016-01-27
|\ | | | | font: Allow adding font to the config. In prep for border titles
| * font: Allow adding font to the config. In prep for border titlesLibravatar crondog2016-01-27
|/ | | | v2: Give default font and make bar use it if no bar font
* Remove pointer from swaylock surfaceLibravatar Drew DeVault2016-01-26
|
* Fix returning to sway after swaylock completesLibravatar Drew DeVault2016-01-26
|
* Merge pull request #478 from SethBarberee/swaymsg-zshLibravatar Mikkel Oscar Lyderik2016-01-26
|\ | | | | refactored to include single dash options
| * refactored to include single dash optionsLibravatar Seth Barberee2016-01-26
|/
* Merge pull request #476 from christophgysin/cairo_set_source_u32Libravatar Drew DeVault2016-01-25
|\ | | | | extract cairo_set_source_u32()
| * extract cairo_set_source_u32()Libravatar Christoph Gysin2016-01-25
|/
* Merge pull request #475 from christophgysin/swaylock_colorLibravatar Drew DeVault2016-01-25
|\ | | | | swaylock: implement --color
| * swaylock: support --colorLibravatar Christoph Gysin2016-01-25
| |
| * swaylock: extract render_imageLibravatar Christoph Gysin2016-01-25
|/
* Merge pull request #474 from christophgysin/swaylock_pamLibravatar Drew DeVault2016-01-25
|\ | | | | swaylock pam fixes
| * swaylock: don't memset memory that has been freedLibravatar Christoph Gysin2016-01-25
| | | | | | | | | | swaylock is randomly crashing because we write to password that has already been freed in pam_authenticate().
| * swaylock: fix pam conversationLibravatar Christoph Gysin2016-01-25
| |
| * swaylock: add pam conversation debug outputLibravatar Christoph Gysin2016-01-25
| |
| * swaylock: remove global variable pam_replyLibravatar Christoph Gysin2016-01-25
|/