summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
* Improved key handling in swaylockLibravatar Mattias Eriksson2018-04-24
| | | | | | Make escape clear buffer Add indicator states for ctrl,shift,super et al Add CapsLock indicator
* Merge pull request #1851 from RyanDwyer/container-descendants-crashLibravatar Drew DeVault2018-04-24
|\ | | | | Fix crash in container_descendants()
| * Fix crash in container_descendants()Libravatar Ryan Dwyer2018-04-24
|/ | | | If root is a C_VIEW, the children property is a null pointer.
* Merge pull request #1843 from swaywm/layer-optional-outputLibravatar Drew DeVault2018-04-23
|\ | | | | Updates per swaywm/wlroots#887
| * Updates per swaywm/wlroots#887Libravatar Drew DeVault2018-04-23
|/
* Merge pull request #1847 from RyanDwyer/rename-workspaceLibravatar Drew DeVault2018-04-23
|\ | | | | Implement rename workspace command
| * Sort workspaces after renameLibravatar Ryan Dwyer2018-04-23
| |
| * Implement rename workspace commandLibravatar Ryan Dwyer2018-04-23
|/ | | | | | | | This implements the following commands: * rename workspace to new_name * rename workspace old_name to new_name * rename workspace number n to new_name
* Merge pull request #1846 from RyanDwyer/fullscreen-xwayland-unmanagedLibravatar Drew DeVault2018-04-23
|\ | | | | Render unmanaged xwayland views when an xwayland view is fullscreen
| * Render unmanaged xwayland views when an xwayland view is fullscreenLibravatar Ryan Dwyer2018-04-23
|/ | | | This makes Chromium and Firefox context menus appear when fullscreen.
* Merge pull request #1839 from emersion/rename-surface-subsurfacesLibravatar Drew DeVault2018-04-22
|\ | | | | Update for wlroots#885
| * Merge branch 'master' into rename-surface-subsurfacesLibravatar Drew DeVault2018-04-22
| |\ | |/ |/|
* | Merge pull request #1840 from ascent12/swaybar_scrollLibravatar Drew DeVault2018-04-22
|\ \ | | | | | | Fix swaybar axis event logic
| * | Fix swaybar axis event logicLibravatar Scott Anderson2018-04-22
|/ / | | | | | | | | | | | | | | | | | | | | Uses 'visible' instead of 'focused', since we may scroll on a bar which isn't the focused output. We can't use "next_on_output" or "prev_on_output" to implement this, because it only modify the focused output. So scrolling on an unfocused output will affect the incorrect one. We just use the "workspace name" command instead.
| * Update for wlroots#885Libravatar emersion2018-04-21
|/
* Merge pull request #1838 from emersion/use-wlr-renderer-init-wl-shmLibravatar Drew DeVault2018-04-21
|\ | | | | Use wlr_renderer_init_wl_shm
| * Use wlr_renderer_init_wl_shmLibravatar emersion2018-04-21
| |
* | Merge pull request #1837 from emersion/cursor-default-to-current-timeLibravatar Drew DeVault2018-04-21
|\ \ | | | | | | Default to current time when triggering cursor events
| * | Default to current time when triggering cursor eventsLibravatar emersion2018-04-21
| |/
* | Merge pull request #1834 from emersion/xwayland-no-unmap-on-destroyLibravatar Drew DeVault2018-04-21
|\ \ | | | | | | Don't unmap on destroy, this is already guaranteed by wlroots
| * | Don't unmap on destroy, this is already guaranteed by wlrootsLibravatar emersion2018-04-20
| | |
* | | Merge pull request #1835 from ascent12/swaybar_status_errLibravatar Drew DeVault2018-04-21
|\ \ \ | |_|/ |/| | Swaybar fix
| * | Remove void * castsLibravatar Scott Anderson2018-04-21
| | | | | | | | | | | | They're pointless.
| * | Remove status command event on errorLibravatar Scott Anderson2018-04-21
| | | | | | | | | | | | | | | This prevents very high CPU load when the status command dies, and poll continuously awoken with POLLHUP.
| * | Change remove_event logicLibravatar Scott Anderson2018-04-21
| | | | | | | | | | | | | | | | | | We defer the removal of entries until after the poll loop has finished. Otherwise we may end up adjusting the poll array while we're still reading from it, causing us to skip events.
| * | Always send POLLHUP and POLLERR with event loopLibravatar Scott Anderson2018-04-21
| |/
* | Merge pull request #1836 from emersion/workspace-focus-update-cursorLibravatar Drew DeVault2018-04-21
|\ \ | |/ |/| Update cursor when workspace focus changes
| * Update cursor when workspace focus changesLibravatar emersion2018-04-21
|/
* Merge pull request #1830 from bpinto/swaylock/install-pam-moduleLibravatar Drew DeVault2018-04-20
|\ | | | | [swaylock] Install pam module
| * [swaylock] Install pam moduleLibravatar Bruno Pinto2018-04-20
| |
* | Merge pull request #1829 from RyanDwyer/move-fullscreen-viewLibravatar emersion2018-04-20
|\ \ | | | | | | Keep view fullscreened when moving to another workspace
| * | Keep view fullscreened when moving to another workspace.Libravatar Ryan Dwyer2018-04-20
|/ / | | | | | | | | container_handle_fullscreen_reparent() must be called *after* setting the container's new parent.
* | Merge pull request #1827 from bpinto/swaybar-memory-leakLibravatar emersion2018-04-20
|\ \ | |/ |/| Fix memory leak on swaybar
| * Fix memory leak on swaybarLibravatar Bruno Pinto2018-04-20
|/ | | | | | Code from @NilsBrause Ref #1820
* Merge pull request #1817 from RyanDwyer/fullscreenLibravatar emersion2018-04-19
|\ | | | | Implement fullscreen
| * Add TODO about rendering fullscreen views smaller than the outputLibravatar Ryan Dwyer2018-04-20
| |
| * Ignore xdg_shell_v6 request_fullscreen if not mappedLibravatar Ryan Dwyer2018-04-20
| |
| * Don't render top layer when fullscreen.Libravatar Ryan Dwyer2018-04-20
| |
| * Fix qutebrowser crash on context menu dismissalLibravatar Drew DeVault2018-04-19
| |
| * Merge branch 'master' into fullscreenLibravatar Drew DeVault2018-04-19
| |\ | |/ |/|
* | Merge pull request #1823 from RyanDwyer/key-repeatLibravatar Drew DeVault2018-04-18
|\ \ | | | | | | Make key repeat configurable
| * | Correct the repeat_rate documentation.Libravatar Ryan Dwyer2018-04-19
| | |
| * | Split repeat commands into separate files.Libravatar Ryan Dwyer2018-04-19
| | |
| * | Make key repeat configurableLibravatar Ryan Dwyer2018-04-18
|/ / | | | | | | | | | | | | | | | | | | | | This creates two input commands for configuring the repeat delay and rate. Example config: input "myidentifier" { repeat_delay 250 repeat_rate 25 }
| * render_output(): When fullscreen, clear to black and don't render backgroundLibravatar Ryan Dwyer2018-04-19
| |
| * container_get_in_direction(): Don't split this functionLibravatar Ryan Dwyer2018-04-19
| |
| * arrange_windows(): Calculate workspace properties when fullscreenLibravatar Ryan Dwyer2018-04-19
| |
| * xdg_shell_v6: Use client_pending state instead of currentLibravatar Ryan Dwyer2018-04-19
| | | | | | | | It appears client_pending is the state that should be used here.
| * Merge branch 'master' into fullscreenLibravatar Ryan Dwyer2018-04-19
| |\ | |/ |/|
* | Merge pull request #1819 from emersion/destroy-displayLibravatar Drew DeVault2018-04-17
|\ \ | | | | | | Destroy display in server_fini