Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-03-30 | Merge pull request #551 from mikkeloscar/window-borders | Drew DeVault | |
Implement Window borders | |||
2016-03-30 | Merge pull request #555 from mikkeloscar/mode-name-spaces | Drew DeVault | |
Allow surrounding spaces in mode name | |||
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 | Fix borders with floating windows | Mikkel Oscar Lyderik | |
2016-03-30 | Update window title when it changes | Mikkel Oscar Lyderik | |
2016-03-30 | Mark focused view focus_inactive on unfocused output | Mikkel Oscar Lyderik | |
2016-03-30 | Handle swaybar using sway font | Mikkel Oscar Lyderik | |
2016-03-30 | Comment endianness | Mikkel Oscar Lyderik | |
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 client/pango.h not depend on client/window.h | Mikkel Oscar Lyderik | |
2016-03-30 | Make pango: prefix optional for font config | Mikkel Oscar Lyderik | |
2016-03-30 | Add default border colors | Mikkel Oscar Lyderik | |
2016-03-30 | Implement some more on borders | Drew DeVault | |
Note that this segfaults ALL THE TIME in wlc code. Paging @Cloudef for help, I'm at a loss. | |||
2016-03-30 | Window borders proof of concept | Drew DeVault | |
2016-03-30 | Initial setup of window border rendering | Drew DeVault | |
Please don't complain to me about the performance of this | |||
2016-03-29 | Merge pull request #553 from Hummer12007/master | Drew DeVault | |
Fix a typo in swaygrab manual | |||
2016-03-29 | Fix a typo in swaygrab manual | Hummer12007 | |
2016-03-28 | Merge pull request #549 from Hummer12007/patch-1 | Drew DeVault | |
Add -R option to getopt opt_string | |||
2016-03-28 | Added -R option to getopt opt_string | Hummer12007 | |
2016-03-27 | Update default config | Drew DeVault | |
2016-03-27 | Loosen restrictions on commands, update docs | Drew DeVault | |
Closes #531 | |||
2016-03-27 | Update sway(1) | Drew DeVault | |
2016-03-27 | Squash warning about uninitialized variable | Drew DeVault | |
2016-03-26 | Update default config to suggest include | Drew DeVault | |
2016-03-26 | Merge pull request #546 from mikkeloscar/include-handle-dir | Drew DeVault | |
Don't try to read config if not a file. | |||
2016-03-26 | Don't try to read config if not a file. | Mikkel Oscar Lyderik | |
2016-03-26 | Merge pull request #544 from mikkeloscar/add-include-command | Drew DeVault | |
Add include command | |||
2016-03-26 | Add config path to error msg | Mikkel Oscar Lyderik | |
2016-03-26 | Load correct config on reload | Mikkel Oscar Lyderik | |
2016-03-26 | Document include command | 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-25 | Update README.md | Drew DeVault | |
2016-03-25 | Update README.md packaging info | Drew DeVault | |
2016-03-25 | Fix link to PGP key | Drew DeVault | |
2016-03-25 | Merge pull request #543 from fluxchief/master | Drew DeVault | |
Add graphical feedback to swaylock (#526) | |||
2016-03-25 | Add graphical feedback to swaylock (#526) | Kevin Hamacher | |
2016-03-24 | Merge pull request #538 from nuew/display-images | Drew DeVault | |
Add choice of display to --image. | |||
2016-03-24 | Replace with in swaylock | Nuew | |
2016-03-24 | Merge branch 'master' into display-images | Ethan | |
2016-03-24 | Change 'display' to 'output' in swaylock error messages where necessary | Nuew | |
2016-03-24 | Change 'display' to 'output' in swaylock docs where necessary | Nuew | |
2016-03-24 | CMake: add missing wlc include dir for common and swaygrab | Dominique Martinet | |
2016-03-24 | Add choice of display to --image. | Nuew | |
Additionally - Made background colors display when an image is enabled if a --color is specified. - Link CJson to swaylock. - Add the --socket option to swaylock. | |||
2016-03-24 | Merge pull request #537 from mikkeloscar/exit-on-config-missing | Drew DeVault | |
Gracefully exit when config is not found | |||
2016-03-24 | Gracefully exit when config is not found | Mikkel Oscar Lyderik | |
This makes sure that sway will gracefully exit if the config is not found or sway is unable to read it. | |||
2016-03-24 | Make the nvidia warning louder | Drew DeVault | |
2016-03-24 | Merge pull request #536 from jcaesar/master | Drew DeVault | |
swaylock: Interpret XKB_KEY_BackSpace as a deletion instead of a normal key. | |||
2016-03-24 | swaylock: Interpret XKB_KEY_BackSpace as a deletion instead of a normal key. | Julius Michaelis | |