summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
...
| * | Fix 'workspace back_and_forth' and workspace_auto_back_and_forth clashLibravatar D.B2016-08-04
|/ / | | | | | | | | | | | | | | When workspace_auto_back_and_forth is enabled, workspaces get switched twice with previously mentioned command, which is not the expected behavior. Removes one redundant creation of previous workspace.
* | Merge pull request #831 from progandy/fix_colorsLibravatar Drew DeVault2016-08-04
|\ \ | | | | | | common: use strtoul in parse_color to avoid clamp
| * | common: use strtoul in parse_color to avoid clampLibravatar progandy2016-08-04
|/ / | | | | | | | | Some implementations of strtol may clamp the values to LONG_MAX instead of wrapping around to negative values, so use strtoul instead to parse colors.
* | Merge pull request #830 from acrisci/feature/simplify-set-focusLibravatar Drew DeVault2016-08-04
|\ \ | | | | | | Simplify focus setting
| * | Simplify focus settingLibravatar Tony Crisci2016-08-03
|/ / | | | | | | | | Merge the main rendering paths of all containers to make focus setting a bit simpler and easier to follow.
* | Merge pull request #827 from acrisci/bug/ipc-id-uintLibravatar Drew DeVault2016-08-03
|\ \ | | | | | | Use uintptr_t for ipc container id
| * | Use uintptr_t for ipc container idLibravatar Tony Crisci2016-08-03
|/ / | | | | | | This is for compatability with i3.
* | Merge pull request #822 from mayhewj/add-resize-to-configLibravatar Drew DeVault2016-08-03
|\ \ | | | | | | Add resize mode to the default config file
| * | Add resize mode to configLibravatar Justin Mayhew2016-08-03
| | | | | | | | | | | | These are the default keybindings in i3.
| * | Don't repeat direction keys in configLibravatar Justin Mayhew2016-08-02
|/ / | | | | | | | | | | I really didn't want to have to repeat the direction keys again for resize mode, and this makes it easier to change all of the relevant keybindings if you don't like the defaults (or prefer i3's).
* | Merge pull request #820 from minus7/bar-wrap-scroll-fixLibravatar Drew DeVault2016-08-02
|\ \ | |/ |/| fixed uninitialized bar.wrap_scroll
| * fixed uninitialized bar.wrap_scrollLibravatar minus2016-08-02
|/
* Merge pull request #817 from zandrmartin/fix-unmanaged-node-jsonLibravatar Drew DeVault2016-08-02
|\ | | | | remove unmanaged nodes from get_tree
| * remove unmanaged nodes from get_treeLibravatar Zandr Martin2016-08-02
| |
* | Merge pull request #810 from acrisci/feature/swaymsg-prettyLibravatar Drew DeVault2016-08-02
|\ \ | |/ |/| swaymsg: pretty print ipc response
| * swaymsg: pretty print ipc responseLibravatar Tony Crisci2016-07-31
| | | | | | | | fixes #809
* | Update README.md screenshotLibravatar Drew DeVault2016-08-02
| |
* | Fix segfault in border.c0.9Libravatar Drew DeVault2016-08-02
| |
* | Merge pull request #815 from acrisci/bug/focus-container-on-op-changeLibravatar Drew DeVault2016-08-02
|\ \ | | | | | | bugfix: focus container on output when focused
| * | bugfix: focus container on output when focusedLibravatar Tony Crisci2016-08-01
|/ / | | | | | | | | | | | | | | Focus the container on the output (not the output itself) when an output is focused. This is intended to fix a bug where borders are not updated correctly when switching the vt away/back to sway.
* | Merge pull request #813 from acrisci/bug/remove-dead-lock-varLibravatar Drew DeVault2016-08-01
|\ \ | | | | | | Remove dead global locked_view_focus
| * | Remove dead global locked_view_focusLibravatar Tony Crisci2016-08-01
|/ / | | | | | | | | The value of `locked_view_focus` is always false. Remove dead code associated with this variable to simplify things.
* | Merge pull request #811 from acrisci/feature/focus-containerLibravatar Drew DeVault2016-08-01
|\ \ | | | | | | Implement focus handling for containers
| * | Update view border when workspace is focusedLibravatar Tony Crisci2016-07-31
| | | | | | | | | | | | | | | When a workspace is focused, update the borders of all its child containers to be focused to indicate the workspace container is focused.
| * | Bugfix: descend focus stack on new window focusLibravatar Tony Crisci2016-07-31
| | | | | | | | | | | | | | | | | | | | | | | | When switching back to a workspace after new window creation, it is now necessary to descend the focus stack into the focused container of the workspace to determine which container should get the focus. This is because the `set_focused_container()` function no longer automatically descends into the focus stack to find the correct view to focus.
| * | Refactor functions to update container bordersLibravatar Tony Crisci2016-07-31
| | | | | | | | | | | | | | | | | | Replace `update_view_border()` with `update_container_border()`. The latter should handle both the case where the container is a view or if the container has children.
| * | Implement focus handling for containersLibravatar Tony Crisci2016-07-31
| |/ | | | | | | | | | | | | | | | | The previous implementation of focus handling assumed that only views can be focused. Containers can also be focused with a command like `focus parent` or `focus child`. Change `set_focused_container()` to handle the case of the given container being a container with children and update borders accordingly.
* | Merge pull request #812 from zandrmartin/floating-fullscreen-size-fixLibravatar Drew DeVault2016-08-01
|\ \ | |/ |/| cache floating container size when fullscreening
| * cache floating container size when fullscreeningLibravatar Zandr Martin2016-07-31
|/
* Merge pull request #808 from zandrmartin/document-kill-commandLibravatar Drew DeVault2016-07-31
|\ | | | | document `kill` command
| * document `kill` commandLibravatar Zandr Martin2016-07-31
|/
* Merge pull request #806 from thejan2009/fix-nested-layoutsLibravatar Drew DeVault2016-07-31
|\ | | | | Update container geometry on layout switch
| * Update container geometry on layout switchLibravatar D.B2016-07-31
|/ | | | | | | | | Deeply nested containers which had their layouts changed didn't update their actual_geometry, this messed up their child containers. Those got width and height of 0, which was then decreased for stacked/tabbed containers by title height. Underflow ensued, these containers suddenly had height 4294967273. In short, not updating actual_geometry didn't play nicely with nested containers.
* Merge pull request #805 from zandrmartin/swaybg-solid-color0.9-rc3Libravatar Drew DeVault2016-07-30
|\ | | | | implement solid color rendering for swaybg
| * implement solid color rendering for swaybgLibravatar Zandr Martin2016-07-30
|/
* Merge pull request #803 from zandrmartin/x11-pidsLibravatar Drew DeVault2016-07-30
|\ | | | | update handler to get pid from wlc for all views - now ok to merge
| * Merge branch 'master' of git://github.com/SirCmpwn/sway into x11-pidsLibravatar Zandr Martin2016-07-30
| |\ | |/ |/|
* | Merge pull request #804 from thejan2009/misc-border-fixLibravatar Drew DeVault2016-07-30
|\ \ | | | | | | Misc border fix
| * | revert border hiding to more recent versionLibravatar D.B2016-07-30
| | |
| * | properly hide top border inside tabbed/stackedLibravatar D.B2016-07-30
|/ / | | | | | | | | | | | | | | | | When titlebar is hidden, top border of the topmost view inside tabbed/stacked container will not be drawn. This is changed in layout.c On the other hand, top border should be drawn sometimes, for example when titlebar is hidden on a view that is not the topmost inside tabbed/stacked container. This is changed in border.c
| * remove outdated (when wlc commit merged) commentLibravatar Zandr Martin2016-07-29
| |
| * update handler to get pid from wlc for all viewsLibravatar Zandr Martin2016-07-29
|/
* Fix swaybg sizing on hidpi outputsLibravatar Drew DeVault2016-07-29
|
* Document scale factor configuration in sway(5)Libravatar Drew DeVault2016-07-29
|
* Merge remote-tracking branch 'origin/hidpi'0.9-rc2Libravatar Drew DeVault2016-07-29
|\
| * Update IPC JSON responses for HiDPI setupsLibravatar Drew DeVault2016-07-28
| |
| * Update hidpi support to latest wlc APILibravatar Drew DeVault2016-07-28
| |
| * Initial pass on HiDPI supportLibravatar Drew DeVault2016-07-28
| |
* | Merge pull request #802 from acrisci/feature/timestamp-log-messagesLibravatar Drew DeVault2016-07-28
|\ \ | | | | | | Add timestamp to log messages
| * | Add timestamp to log messagesLibravatar Tony Crisci2016-07-28
|/ /