Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-03-05 | Remove focus when switching to empty workspace | Mikkel Oscar Lyderik | |
Fix #504 | |||
2016-03-04 | Merge pull request #502 from mikkeloscar/lock-reset-input | Drew DeVault | |
Reset input state when locking compositor | |||
2016-03-04 | Reset input state when locking compositor | Mikkel Oscar Lyderik | |
Fix #498 | |||
2016-03-04 | Merge pull request #501 from mikkeloscar/ws-on-output | Drew DeVault | |
Fix assigning workspaces to outputs | |||
2016-03-04 | Fix assigning workspaces to outputs | Mikkel Oscar Lyderik | |
It's possible to assign workspaces to certain outputs using the command: workspace <name> output <output> However, this did not work in some cases where the workspace was assigned before the given output was made available to sway. This patch fixes those cases. | |||
2016-02-29 | Merge pull request #495 from gpyh/docswaybar | Drew DeVault | |
Segregate between config and runtime cmds in doc | |||
2016-02-29 | Segregate between config and runtime cmds in doc | Yacine Hmito | |
In anticipation for #375, reorganized and augmented slightly sway(5) so it makes a difference between commands intended for configuration, commands intended for control, and those that can serve as both. | |||
2016-02-28 | Merge pull request #497 from progandy/swaylock-arrange | Drew DeVault | |
swaylock: call arrange_windows for floating change | |||
2016-02-28 | sway: rearrange the whole ws on lock view setup | progandy | |
2016-02-28 | sway: set lock view to floating after ws switch | progandy | |
This avoids calling swayc_active_workspace. | |||
2016-02-28 | Merge pull request #496 from mikkeloscar/focus-new-output | Drew DeVault | |
Correctly move focus from one output to a new one. | |||
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 | |