Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-11 | Implement hide_edge_borders | Brian Ashworth | |
2018-05-11 | Merge pull request #1956 from ggreer/move-focus | Drew DeVault | |
cmd_move_container: Focus a window on the source workspace. | |||
2018-05-10 | cmd_move_container: Focus a window on the source workspace. | Geoff Greer | |
In Sway 0.15, moving a window to another workspace would cause a window on the source workspace to be focused. This restores that behavior, allowing you to quickly move a lot of windows to another workspace. | |||
2018-05-10 | Allow setting border widths for normal borders using default_border. | Geoff Greer | |
In Sway 0.15, `default_border normal 1` would set 1px wide borders. This recreates that behavior. | |||
2018-05-06 | Revert "exec_always: Search for executables in /usr/lib/sway" | Rostislav Pehlivanov | |
This reverts commit 7709340727fe2834f87b43aeeaef878694d5acd6. | |||
2018-05-06 | Revert "Make the LIBDIR path configurable" | Rostislav Pehlivanov | |
This reverts commit 1670b46bf6e56d37e69ab0fa32c6799e83397020. | |||
2018-05-06 | Revert "Meson: Replace option `instlibdir` with `libexecdir`" | Rostislav Pehlivanov | |
This reverts commit 830c4ef74c00dbe448da46cdbc576178abc5728e. | |||
2018-05-06 | Revert "command/exec_always: Use wlr_log for logging errors in the child ↵ | Rostislav Pehlivanov | |
process" This reverts commit 177c67e6b89404d9d477b82c00c1353cd4696096. | |||
2018-05-06 | Implement pango support | Ryan Dwyer | |
Implements support for the pango: prefix in the font command. Closes #1903. | |||
2018-05-06 | Fix PATH setenv() in exec_always | Ryan Dwyer | |
2018-05-05 | Merge branch 'master' into usr-lib | emersion | |
2018-05-05 | command/exec_always: Use wlr_log for logging errors in the child process | Nicolas Braud-Santoni | |
2018-05-05 | Meson: Replace option `instlibdir` with `libexecdir` | Nicolas Braud-Santoni | |
Derive a value from it, called `rundir` rather than writing join_paths(libexecdir, 'sway') all over the place. | |||
2018-05-05 | Make the LIBDIR path configurable | Nicolas Braud-Santoni | |
2018-05-05 | exec_always: Search for executables in /usr/lib/sway | Nicolas Braud-Santoni | |
2018-05-05 | Move code for re-arranging after font height change into a common place | Ryan Dwyer | |
2018-05-05 | Fix memory leak in title_format command | Ryan Dwyer | |
2018-05-05 | Implement title_format | Ryan Dwyer | |
This implements the title_format command, with a new placeholder %shell which gets substituted with the view type (xwayland, xdg_shell_v6 or wl_shell). Example config: for_window [title=".*"] title_format %title (class=%class instance=%instance shell=%shell) | |||
2018-05-03 | Fix segfault when running the resize command without arguments | emersion | |
2018-05-03 | Convert border_colors.text to float[4] | Drew DeVault | |
2018-05-03 | Calculate config->font_height based on existing container titles | Ryan Dwyer | |
2018-05-03 | Render titles | Ryan Dwyer | |
2018-05-02 | Support alpha in border colours | Ryan Dwyer | |
The alpha component is merged with the container's opacity. Completes #1882. | |||
2018-05-01 | Remove unnecessary pointers | Ryan Dwyer | |
2018-05-01 | Update cursor when border is changed | Ryan Dwyer | |
2018-04-30 | Implement borders | Ryan Dwyer | |
Implements rendering of borders. Title text is still to do. Implements the following configuration directives: * client.focused * client.focused_inactive * client.unfocused * client.urgent * border * default_border | |||
2018-04-28 | Refactor arrange_windows() | Ryan Dwyer | |
Replaces arrange_windows() with arrange_root(), arrange_output(), arrange_workspace() and arrange_children_of(). Also makes fullscreen views save and restore their dimensions, which allows it to preserve any custom resize and is also a requirement for floating views once they are implemented. | |||
2018-04-26 | Add map_from_region command | emersion | |
2018-04-26 | Remove sway_container.workspace_layout | Ryan Dwyer | |
Fixes #1716. | |||
2018-04-24 | Use size_t instead of int and calloc instead of malloc | Ryan Dwyer | |
2018-04-24 | Implement criteria commands | Ryan Dwyer | |
Implements the following commands: * for_window [...] <cmdlist> * assign [...] <workspace> | |||
2018-04-23 | Sort workspaces after rename | Ryan Dwyer | |
2018-04-23 | Implement rename workspace command | Ryan Dwyer | |
This implements the following commands: * rename workspace to new_name * rename workspace old_name to new_name * rename workspace number n to new_name | |||
2018-04-21 | Default to current time when triggering cursor events | emersion | |
2018-04-19 | Merge branch 'master' into fullscreen | Drew DeVault | |
2018-04-19 | Split repeat commands into separate files. | Ryan Dwyer | |
2018-04-18 | Make key repeat configurable | Ryan Dwyer | |
This creates two input commands for configuring the repeat delay and rate. Example config: input "myidentifier" { repeat_delay 250 repeat_rate 25 } | |||
2018-04-18 | Fullscreen fixes. | Ryan Dwyer | |
2018-04-17 | Feedback for fullscreen. | Ryan Dwyer | |
2018-04-16 | Implement fullscreen. | Ryan Dwyer | |
2018-04-13 | Fix gcc string truncation warnings | Dominique Martinet | |
2018-04-10 | Clean up cursor simulation code. | Danny Bautista | |
2018-04-10 | Implement cursor event simulation with sway commands. | Danny Bautista | |
2018-04-09 | Add workspace_auto_back_and_forth for move cmd | db | |
2018-04-08 | Merge pull request #1769 from acrisci/focus-inactive-fixes | Drew DeVault | |
Focus inactive fixes | |||
2018-04-08 | Add input "identifier" map_to_output "identifier" | Drew DeVault | |
2018-04-08 | Merge branch 'wlroots' into focus-inactive-fixes | Tony Crisci | |
2018-04-08 | Add workspace_auto_back_and_forth command | db | |
This is the only missing piece - other code regarding this functionality has already been ported from pre-wlroots source. | |||
2018-04-07 | container_create_notify on split | Tony Crisci | |
2018-04-07 | Merge pull request #1756 from emersion/output-damage | Drew DeVault | |
Fine-grained damage tracking |