Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-06-10 | trigger bg change on config reload | Zandr Martin | |
2016-06-05 | Merge branch 'master' into variables_corner_cases | Denis Doria | |
2016-06-04 | add documentation for client commands | Zandr Martin | |
2016-06-03 | Put w to uppercase just to keep consistency between warnings | Denis Doria | |
2016-06-03 | Includes $ for variables without it | Denis Doria | |
2016-06-03 | Fix identation issue | thuck | |
2016-06-03 | Fix output command when varible not set | thuck | |
This should fix the corner case where a variable is not assigned, but used anyway. This should solve partially the issue #681. | |||
2016-06-02 | Including error message when variable do not start with $ | thuck | |
2016-06-02 | Initial implementation for floating_maximum_size | Denis Doria | |
2016-06-01 | Included option floating_minimum_size | Denis Doria | |
Values cannot be negative or 0; if so uses the default 75x50. Uses the same syntax as i3: floating_minimum_size <width> x <height>, although the x can be anything. | |||
2016-05-29 | Remove bar position left:right from docs | Drew DeVault | |
And adds a warning about using them (currently these are not supported by swaybar). | |||
2016-05-28 | enforce workspace output assignents | Zandr 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-28 | remove alphabetic sorting from sort_workspaces | Zandr Martin | |
also add a couple missing spaces to container.c (unrelated) | |||
2016-05-23 | Concatenate output cmd args, fixes #654 | Mykyta Holubakha | |
2016-05-14 | Support floating_scroll sideways | Mykyta Holubakha | |
2016-05-09 | Prevent changing layout when focusing float window | Mikkel 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-08 | Allow to set relative path for wallpapers in config | Mykyta Holubakha | |
2016-05-08 | Remove FSB_GAPS_INNER and FSB_GAPS_OUTER | Mykyta Holubakha | |
2016-05-07 | Implemented configurable floating scroll behavior | Mykyta Holubakha | |
2016-05-02 | fix a typo (horiziontal -> horizontal) | Raman Varabets | |
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-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-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-25 | Add title to nested tabbed/stacked containers | Mikkel Oscar Lyderik | |
2016-04-25 | Add support for nested tabbed/stacked containers | Mikkel Oscar Lyderik | |
2016-04-25 | Reapply prev layout when exiting tabbed/stacked | 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 configuration | Mykyta Holubakha | |
2016-04-03 | Add border color commands | Kevin Hamacher | |
2016-04-02 | Fix spelling mistakes | Eric Engestrom | |
2016-03-31 | Add cmds new_window and new_float | Mikkel Oscar Lyderik | |
Makes it possible to set default layout style for new windows and new floating windows. Close #556 | |||
2016-03-30 | Make pango: optional for bar font | Mikkel Oscar Lyderik | |
2016-03-30 | Merge pull request #551 from mikkeloscar/window-borders | Drew DeVault | |
Implement Window borders | |||
2016-03-30 | Allow surrounding spaces in mode name | Mikkel Oscar Lyderik | |
This makes it possible to define a mode name with surrounding spaces if so desired. e.g.: mode " hello " { } | |||
2016-03-30 | Implement borders | Mikkel Oscar Lyderik | |
The borders are implemented as a surface/buffer attached to each view which is sent to and rendered by wlc in the view_pre_render callback. All the drawing logic is handled in sway/border.c and all the logic for calculating the geometry of the border/view is handled in `update_geometry` in sway/layout.c (same place as gaps are calculated). | |||
2016-03-30 | Add border <none|normal|toggle|pixel> config | Mikkel Oscar Lyderik | |
2016-03-30 | Implement parsing of hide_edge_borders | Mikkel Oscar Lyderik | |
2016-03-30 | Make pango: prefix optional for font config | Mikkel Oscar Lyderik | |
2016-03-27 | Loosen restrictions on commands, update docs | Drew DeVault | |
Closes #531 | |||
2016-03-26 | Load correct config on reload | Mikkel Oscar Lyderik | |
2016-03-26 | Implement include command | Mikkel Oscar Lyderik | |
The include command (`include <path>`) makes it possible to include sub config files from the main config file (or from within other sub config files). The include command uses the following rules for including config files: * the `path` can be either a full path or a path that is relative to the parent config. Shell expansion is supported, so it's possible to do `include ~/.config/sway.d/*`. * The same config file can only be included once (to prevent include cycles). If a config is included multiple times it will just be ignored after it has been included once. * Including a sub config file is the same as inserting the content of that file into the parent config, thus rules about overwriting bindsyms etc. works the same as for a single config. Implement #542 | |||
2016-03-20 | Merge pull request #525 from mikkeloscar/fix-clang-warning | Drew DeVault | |
Use correct type for keycode | |||
2016-03-20 | Use correct type for keycode | Mikkel Oscar Lyderik | |