Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-02-25 | Merge pull request #494 from gpyh/argsegfault | Drew DeVault | |
Fix segfault when trying to use sway as IPC without a sway instance | |||
2016-02-25 | Fix for when sway_abort doesn't exit | Yacine Hmito | |
sway_terminate does an exit in case wlc_terminate doesn't | |||
2016-02-25 | Fixed swaymsg command name in sway(5) doc | Yacine Hmito | |
2016-02-25 | No options when using sway as IPC client | Yacine Hmito | |
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. | |||
2016-02-25 | Removed p as a valid CLI option | Yacine Hmito | |
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. | |||
2016-02-25 | Merge pull request #493 from mikkeloscar/view-behind-swaylock | Drew DeVault | |
Don't rearrange views behind swaylock. | |||
2016-02-25 | Don't rearrange views behind swaylock. | Mikkel Oscar Lyderik | |
Fix #481 | |||
2016-02-25 | Check for empty ws on view destroyed. | Mikkel Oscar Lyderik | |
In some cases destroying a view can result in an empty and inactive workspace, which should be destroyed. This handles those cases. | |||
2016-02-25 | Send workspace ICP event on ws destroy/empty. | Mikkel Oscar Lyderik | |
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). | |||
2016-02-25 | Prevent crash when showing scratchpad on new ws. | Mikkel Oscar Lyderik | |
Fix #469 | |||
2016-02-21 | Fix ipc event bit masks | Mikkel Oscar Lyderik | |
2016-02-12 | Prefer named output config over wildcard config. | Mikkel Oscar Lyderik | |
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 * ... | |||
2016-02-08 | Merge pull request #488 from mikkeloscar/get-pixels | Drew DeVault | |
Replace deprecated function wlc_output_get_pixels. | |||
2016-02-08 | Replace deprecated function wlc_output_get_pixels. | Mikkel Oscar Lyderik | |
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`. | |||
2016-02-08 | Squash trailing whitespace | Mikkel Oscar Lyderik | |
2016-02-08 | Fix clang warnings | Mikkel Oscar Lyderik | |
2016-02-08 | Add wlc-render.h to handlers.c | Drew DeVault | |
2016-02-08 | Merge pull request #486 from SethBarberee/sway-zsh | Mikkel Oscar Lyderik | |
refactored sway command to include single dash | |||
2016-02-01 | fixed config help | Seth Barberee | |
2016-01-31 | refactored to include single dash | Seth Barberee | |
2016-01-29 | use tabs | Mikkel Oscar Lyderik | |
2016-01-29 | Improve _swaymsg and _swaygrab completions | Mikkel Oscar Lyderik | |
2016-01-29 | Autocomplete scale options | Mikkel Oscar Lyderik | |
2016-01-29 | complete image, not color | Mikkel Oscar Lyderik | |
2016-01-29 | Add files completion to _swaylock | Mikkel Oscar Lyderik | |
2016-01-29 | Merge pull request #483 from aouelete/zsh-swaylock-completion | Mikkel Oscar Lyderik | |
zsh completions for swaylock | |||
2016-01-28 | zsh completions for swaylock | Aaron Ouellette | |
2016-01-28 | Merge pull request #482 from crondog/movemouse | Drew DeVault | |
commands: move position mouse | |||
2016-01-28 | Print /proc/<pid>/maps on segfault | Drew DeVault | |
2016-01-28 | commands: move position mouse | crondog | |
Bounds checking works ok except it overlaps the bar. Just like with normal floating. Should be fixed once swaybar is fixed. | |||
2016-01-27 | Merge pull request #480 from crondog/swaylocktrans2 | Drew DeVault | |
swaylock: Allow for transparent color values | |||
2016-01-28 | swaylock: Allow for transparent color values | crondog | |
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 | |||
2016-01-27 | Merge pull request #479 from crondog/font | Drew DeVault | |
font: Allow adding font to the config. In prep for border titles | |||
2016-01-27 | font: Allow adding font to the config. In prep for border titles | crondog | |
v2: Give default font and make bar use it if no bar font | |||
2016-01-26 | Remove pointer from swaylock surface | Drew DeVault | |
2016-01-26 | Fix returning to sway after swaylock completes | Drew DeVault | |
2016-01-26 | Merge pull request #478 from SethBarberee/swaymsg-zsh | Mikkel Oscar Lyderik | |
refactored to include single dash options | |||
2016-01-26 | refactored to include single dash options | Seth Barberee | |
2016-01-25 | Merge pull request #476 from christophgysin/cairo_set_source_u32 | Drew DeVault | |
extract cairo_set_source_u32() | |||
2016-01-25 | extract cairo_set_source_u32() | Christoph Gysin | |
2016-01-25 | Merge pull request #475 from christophgysin/swaylock_color | Drew DeVault | |
swaylock: implement --color | |||
2016-01-25 | swaylock: support --color | Christoph Gysin | |
2016-01-25 | swaylock: extract render_image | Christoph Gysin | |
2016-01-25 | Merge pull request #474 from christophgysin/swaylock_pam | Drew DeVault | |
swaylock pam fixes | |||
2016-01-25 | swaylock: don't memset memory that has been freed | Christoph Gysin | |
swaylock is randomly crashing because we write to password that has already been freed in pam_authenticate(). | |||
2016-01-25 | swaylock: fix pam conversation | Christoph Gysin | |
2016-01-25 | swaylock: add pam conversation debug output | Christoph Gysin | |
2016-01-25 | swaylock: remove global variable pam_reply | Christoph Gysin | |
2016-01-25 | swaybar: Fix plaintext handling. | Mikkel Oscar Lyderik | |
Fix #473 |