Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2016-03-24 | Update README | Drew DeVault | |
2016-03-24 | Don't set WLC_DIM on startup | Drew DeVault | |
2016-03-24 | Update to new WLC API | Drew DeVault | |
2016-03-23 | Merge pull request #535 from mikkeloscar/fix-swaylock-crash | Drew DeVault | |
swaylock: Fix crash when unable to connect to sway | |||
2016-03-23 | swaylock: Fix crash when unable to connect to wl | Mikkel Oscar Lyderik | |
Prevent swaylock from crashing when it can't connect to wayland for whatever reason. i.e. XDG_RUNTIME_DIR not set. Fix #534 | |||
2016-03-22 | Merge pull request #530 from mikkeloscar/swaybar-kill-on-sway-crash | Drew DeVault | |
swaybar: Abort when receiving 0 bytes in IPC call | |||
2016-03-22 | Abort when receiving 0 bytes in IPC call | Mikkel Oscar Lyderik | |
When sway crashes a swaybar process is sometimes left behind running at 100% CPU. This was caused by the swaybar trying to retrieve an IPC response from the closed sway socket. This patch fixes the problem by aborting when the socket has been closed (recv return 0). Fix #528 | |||
2016-03-21 | Merge pull request #527 from gkbrk/swaylock_password_grow | Drew DeVault | |
swaylock: Grow the password buffer | |||
2016-03-21 | swaylock: Grow the password buffer | Gökberk Yaltıraklı | |
2016-03-20 | Merge pull request #525 from mikkeloscar/fix-clang-warning | Drew DeVault | |
Use correct type for keycode | |||
2016-03-20 | Merge pull request #524 from mikkeloscar/smart-gaps | Drew DeVault | |
Implement 'smart_gaps' feature from i3-gaps | |||
2016-03-20 | Use correct type for keycode | Mikkel Oscar Lyderik | |
2016-03-20 | Implement 'smart_gaps' feature from i3-gaps | Mikkel Oscar Lyderik | |
2016-03-19 | Merge pull request #523 from mikkeloscar/slack-key-handler | Drew DeVault | |
Make key handling less strict | |||
2016-03-19 | Make key handling less strict | Mikkel Oscar Lyderik | |
Sway has been very strict when it comes to key handling. Only on an exact match would a bindsym be triggered. This patch makes it less strict by for instance allowing the key combo `$mod+1+2` to act as `$mod+2` if 2 was the last pressed key and `$mod+1` if 1 was the last pressed key. The new key handling uses the following algorithm: 1. List of bindings sorted by number of keys in binding (already the default) 2. Find all bindings covered by the current keyboard state and list them by same order as in 1. 3. Select the first binding from the list where the last pressed key is part of the binding. Addresses #452 | |||
2016-03-19 | Allow legal non-x11 keycodes | Mikkel Oscar Lyderik | |
2016-03-18 | Merge pull request #522 from mikkeloscar/workspace-layout | Drew DeVault | |
Add config option workspace_layout | |||
2016-03-19 | Add config option workspace_layout | Mikkel Oscar Lyderik | |
This implements the config parsing of `workspace_layout <default|stacking|tabbed>` http://i3wm.org/docs/userguide.html#_layout_mode_for_new_containers | |||
2016-03-18 | New default wallpaper! | Drew DeVault | |
2016-03-18 | Merge pull request #520 from aouelete/swaylock | Drew DeVault | |
Add a manpage for swaylock | |||
2016-03-18 | Merge branch 'master' of git://github.com/SirCmpwn/sway into swaylock | Aaron Ouellette | |
2016-03-18 | Merge pull request #519 from mikkeloscar/maintain-exec-quotes | Drew DeVault | |
Don't strip quotes from exec args |