aboutsummaryrefslogtreecommitdiff
path: root/sway
AgeCommit message (Collapse)Author
2016-05-28enforce workspace output assignentsZandr Martin
when creating a new output, move to that output all extant workspaces that are assigned to that output. (unrelated) remove comment that was no longer applicable, fix spacing in an assignment
2016-05-28remove alphabetic sorting from sort_workspacesZandr Martin
also add a couple missing spaces to container.c (unrelated)
2016-05-27Implement sort_workspaces() function for outputs.Zandr Martin
This seems to have resolved issue #669 for me.
2016-05-23set focus on fullscreen view when changing focusZandr Martin
2016-05-23Concatenate output cmd args, fixes #654Mykyta Holubakha
2016-05-20Remove stray whitespaceMikkel Oscar Lyderik
2016-05-20Rearrange output when setting backgroundMikkel Oscar Lyderik
Fix #659
2016-05-18Fix issue #661.Jasen Borisov
Borders are now drawn correctly (same behavior as i3) for tabbed and stacked containers, when the children have 'border none' set.
2016-05-14Support floating_scroll sidewaysMykyta Holubakha
2016-05-14Revert "sway/container.c: fix segfault where view is assigned prematurely"Drew DeVault
2016-05-09sway/container.c: fix segfault where view is assigned prematurelyDaniel Lockyer
2016-05-09Prevent changing layout when focusing float windowMikkel Oscar Lyderik
The layout command should only work with titled windows, thus it should have no effect when a floating window has focus. Should fix #643
2016-05-08Allow to set relative path for wallpapers in configMykyta Holubakha
2016-05-08Remove FSB_GAPS_INNER and FSB_GAPS_OUTERMykyta Holubakha
2016-05-08Documented floating_scrollMykyta Holubakha
2016-05-07Implemented configurable floating scroll behaviorMykyta Holubakha
2016-05-05Merge pull request #638 from neosilky/memleakDrew DeVault
sway/main.c: simplify free'ing by switching to the helper method
2016-05-05sway/config.c: fix double free issue as we need to store path in listDaniel Lockyer
2016-05-05sway/main.c: simplify free'ing by switching to the helper methodDaniel Lockyer
2016-05-02Merge pull request #628 from 1ace/fix/ipc-pathDrew DeVault
Always terminate ipc path
2016-05-02fix a typo (horiziontal -> horizontal)Raman Varabets
2016-05-02sway: always terminate ipc pathEric Engestrom
2016-05-01Update view title of tabbed/stacked windowsMikkel Oscar Lyderik
Requires Cloudef/wlc@80bf003 Fix #623
2016-05-01sway: fix potential buffer overflowEric Engestrom
2016-05-01Add input cmd for setting pointer accel profile.Jasen Borisov
2016-04-30Remove premature breakMikkel Oscar Lyderik
2016-04-30sway/config.c: Initialise struct valueDaniel Lockyer
2016-04-29sway/workspace.c: Cleanup some un-free'd memoryDaniel Lockyer
2016-04-29sway/config.c: Move the wordfree call before the if statement so it is ↵Daniel Lockyer
always called
2016-04-29sway/config.c: Change to the useful free_cmd_results helper methodDaniel Lockyer
2016-04-29sway/config.c: move free call to after sway_logDaniel Lockyer
2016-04-29sway/config.c: Leading on from cdf017c, we need to free pathDaniel Lockyer
2016-04-29sway/config.c: res->input is a malloc'ed section which wasn't freedDaniel Lockyer
2016-04-29sway/config.c: wordexp has a corresponding wordfree which was never usedDaniel Lockyer
I had to change the assignment to path to be wrapped by strdup as we pass the data out of the method.
2016-04-29sway/config.c: config_home is the result of a malloc but was never freedDaniel Lockyer
2016-04-29sway/commands.c: add some free calls to release allocated memoryDaniel Lockyer
2016-04-29Fix oversight in ebdce71Drew DeVault
2016-04-29Fix -Wunused-result problemsDrew DeVault
2016-04-29Fix uninitialized variableMikkel Oscar Lyderik
2016-04-28Fix bindcode by offsetting xkb keycode by 8Mikkel Oscar Lyderik
The bindcode has to be offset by 8 to match the keycode we get from wlc. https://github.com/xkbcommon/libxkbcommon/blob/master/xkbcommon/xkbcommon.h#L160
2016-04-28Fix missing include pathsTomáš Čech
When headers were installed in more sofisticated places (but package config knows it right), it revealed missing paths in CMake configuration. Lets fix it.
2016-04-27border: clear buffer on fullscreen viewsMikkel Oscar Lyderik
This patch makes sure to clear the border buffer of fullscreen view so the border doesn't get drawn behind a fullscreen view, which would be visible if the view was transparent.
2016-04-27Only check tabbed_stacked_parent for focused windowsMikkel Oscar Lyderik
2016-04-25Remove commented codeMikkel Oscar Lyderik
2016-04-25Remove unused functionMikkel Oscar Lyderik
2016-04-25Don't send invisble view to backMikkel Oscar Lyderik
2016-04-25Use correct geometry for nested containersMikkel Oscar Lyderik
2016-04-25Add title to nested tabbed/stacked containersMikkel Oscar Lyderik
2016-04-25Disable inner gaps when in tabbed/stacked modeMikkel Oscar Lyderik
2016-04-25Add support for nested tabbed/stacked containersMikkel Oscar Lyderik