Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |||
2016-01-25 | Fix colors off by one | Mikkel Oscar Lyderik | |
2016-01-24 | Merge pull request #471 from mikkeloscar/fix-exec-quotes | Drew DeVault | |
Add quotes to multiword arguments. | |||
2016-01-25 | Add quotes to multiword arguments. | Mikkel Oscar Lyderik | |
This adds quotes around multiword arguments before they are passed to `/bin/sh -c` in an exec command. Example: I connect to irc like this: exec termite -e "mosh server tmux a" Without this patch the arguments are passed to sh as: termite -e mosh server tmux a When it should be: termite -e "mosh server tmux a" For the command to work. | |||
2016-01-24 | swaybar: move headers to include/bar | Mikkel Oscar Lyderik | |
2016-01-24 | Merge pull request #467 from mikkeloscar/swaybar-refactor | Drew DeVault | |
[WIP] Swaybar refactor | |||
2016-01-24 | swaybar: cleanup CmakeLists.txt | Mikkel Oscar Lyderik | |
2016-01-24 | swaybar: rename state to bar | Mikkel Oscar Lyderik | |