Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-05 | sway/config.c: fix double free issue as we need to store path in list | Daniel Lockyer | |
2016-05-02 | Merge pull request #628 from 1ace/fix/ipc-path | Drew DeVault | |
Always terminate ipc path | |||
2016-05-02 | fix a typo (horiziontal -> horizontal) | Raman Varabets | |
2016-05-02 | sway: always terminate ipc path | Eric Engestrom | |
2016-05-01 | Update view title of tabbed/stacked windows | Mikkel Oscar Lyderik | |
Requires Cloudef/wlc@80bf003 Fix #623 | |||
2016-05-01 | sway: fix potential buffer overflow | Eric Engestrom | |
2016-05-01 | Add input cmd for setting pointer accel profile. | Jasen Borisov | |
2016-04-30 | Remove premature break | Mikkel Oscar Lyderik | |
2016-04-30 | sway/config.c: Initialise struct value | Daniel Lockyer | |
2016-04-29 | sway/workspace.c: Cleanup some un-free'd memory | Daniel Lockyer | |
2016-04-29 | sway/config.c: Move the wordfree call before the if statement so it is ↵ | Daniel Lockyer | |
always called | |||
2016-04-29 | sway/config.c: Change to the useful free_cmd_results helper method | Daniel Lockyer | |
2016-04-29 | sway/config.c: move free call to after sway_log | Daniel Lockyer | |
2016-04-29 | sway/config.c: Leading on from cdf017c, we need to free path | Daniel Lockyer | |
2016-04-29 | sway/config.c: res->input is a malloc'ed section which wasn't freed | Daniel Lockyer | |
2016-04-29 | sway/config.c: wordexp has a corresponding wordfree which was never used | Daniel 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-29 | sway/config.c: config_home is the result of a malloc but was never freed | Daniel Lockyer | |
2016-04-29 | sway/commands.c: add some free calls to release allocated memory | Daniel Lockyer | |
2016-04-29 | Fix oversight in ebdce71 | Drew DeVault | |
2016-04-29 | Fix -Wunused-result problems | Drew DeVault | |
2016-04-29 | Fix uninitialized variable | Mikkel Oscar Lyderik | |
2016-04-28 | Fix bindcode by offsetting xkb keycode by 8 | Mikkel 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-28 | Fix missing include paths | Tomáš Č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-27 | border: clear buffer on fullscreen views | Mikkel 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-27 | Only check tabbed_stacked_parent for focused windows | Mikkel Oscar Lyderik | |
2016-04-25 | Remove commented code | Mikkel Oscar Lyderik | |
2016-04-25 | Remove unused function | Mikkel Oscar Lyderik | |
2016-04-25 | Don't send invisble view to back | Mikkel Oscar Lyderik | |
2016-04-25 | Use correct geometry for nested containers | Mikkel Oscar Lyderik | |
2016-04-25 | Add title to nested tabbed/stacked containers | Mikkel Oscar Lyderik | |
2016-04-25 | Disable inner gaps when in tabbed/stacked mode | Mikkel Oscar Lyderik | |
2016-04-25 | Add support for nested tabbed/stacked containers | Mikkel Oscar Lyderik | |
2016-04-25 | Use tabs for indentation | Mikkel Oscar Lyderik | |
2016-04-25 | Make floating border fixes work with tabbed/stacked code | Mikkel Oscar Lyderik | |
2016-04-25 | Reapply prev layout when exiting tabbed/stacked | Mikkel Oscar Lyderik | |
2016-04-25 | Improve move command with tabbed/stacked layout | Mikkel Oscar Lyderik | |
2016-04-25 | Correctly determine default layout | Mikkel Oscar Lyderik | |
2016-04-25 | Fix problems with floating windows | Mikkel Oscar Lyderik | |
Makes any tabbed/stacked layout a container to separate from floating windows which may be attached to a workspace. | |||
2016-04-25 | Tabbed and stacked layout | Mikkel Oscar Lyderik | |
2016-04-24 | Renamed pango_markup config options | Mykyta Holubakha | |
2016-04-24 | Renamed to pango_markup | Mykyta Holubakha | |
2016-04-24 | Added plaintext_markup to swaybar IPC | Mykyta Holubakha | |
2016-04-24 | Added plaintext markup configuration | Mykyta Holubakha | |
2016-04-24 | Passing missing argument to get_text_size | Mykyta Holubakha | |
2016-04-17 | Flesh out pango markup implementation | Drew DeVault | |
2016-04-17 | Use correct format string for x86_64 and i686 | Mikkel Oscar Lyderik | |
Fix #587 | |||
2016-04-16 | Remove clang warnings (-Wsign-compare) | Mikkel Oscar Lyderik | |
2016-04-16 | Update to wlc 0.0.2 | Drew DeVault | |
2016-04-12 | Plug two memory leaks | Chang Liu | |
Plug two memory leaks introduced in the border drawing code. | |||
2016-04-09 | Don't init desired width/height on new_view | Mikkel Oscar Lyderik | |
When creating a new view, wlc usually returns an initial geometry with size 1x1. Setting those values as desired width/height causes a problem for some windows (QT5) because they don't request a new geometry for instance when made floating, so the floating window becomes 1x1. To fix this problem we can just omit setting the desired width/height on new_view and instead let the clients request a certain size if they feel like it. e.i. gnome-calculator. Fix #578 |