Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-28 | Correctly move focus from one output to a new one. | Mikkel Oscar Lyderik | |
This patch aims to correctly handle moving focus <left|right|up|down> between outputs. For instance, if moving from one output to a new output at the left of the current one, it should focus the right-most view/container on the new output, and the opposite if moving from right to left. This should happen regardless of the previously stored focus of the new output. This also handles moving to a new output above or below the current one. | |||
2016-02-27 | Merge pull request #492 from mikkeloscar/swaybar-multi-output | Drew DeVault | |
Display single swaybar on multiple outputs | |||
2016-02-27 | Free config before exiting sway. | Mikkel Oscar Lyderik | |
Apart from freeing the sway_config struct, this also terminates the swaybars spawned by sway, since they are linked by PID to the bar config structs. | |||
2016-02-27 | Improve how swaybars are spawned | Mikkel Oscar Lyderik | |
2016-02-27 | Poll before wl_display_dispatch | Mikkel Oscar Lyderik | |
2016-02-27 | Differentiate between all or no outputs | Mikkel Oscar Lyderik | |
2016-02-27 | Add outputs to bar_config ipc response | Mikkel Oscar Lyderik | |
2016-02-27 | Make sway spawn only one bar per bar config | Mikkel Oscar Lyderik | |
2016-02-27 | Make single bar handle multiple outputs | Mikkel Oscar Lyderik | |
2016-02-27 | Set pointer pos before focusing view under it | Mikkel Oscar Lyderik | |
2016-02-27 | Make protocol specifications follow the DTD | Mikkel Oscar Lyderik | |
Gets rid of these warnings: WARNING: XML failed validation against built-in DTD | |||
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 | |