Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-01-22 | Merge pull request #459 from crondog/sigpipe | Mikkel Oscar Lyderik | |
Prevent ipc from crashing sway | |||
2016-01-22 | Prevent ipc from crashing sway | crondog | |
2016-01-21 | Only update visibility if WS isn't destroyed after | Mikkel Oscar Lyderik | |
No need to update visibility if the workspace will be destroyed right after. | |||
2016-01-21 | Merge pull request #456 from gpyh/fix-config-dir | Drew DeVault | |
Fix issue #455 | |||
2016-01-21 | Fix issue #455 | Yacine Hmito | |
CMAKE_INSTALL_FULL_SYSCONFIG is not actually passed to the C preprocessor. I remember it working, so I must have messed up somewhere last time I touched this. This is fixed by manually passing its value to the C preprocessor through the SYSCONFDIR definition | |||
2016-01-21 | Fix memory leak in config.c | Drew DeVault | |
Thanks @jollywho | |||
2016-01-21 | Strip stray whitespace | Mikkel Oscar Lyderik | |
2016-01-19 | Merge pull request #440 from SethBarberee/zsh-completions | Drew DeVault | |
Basic Zsh auto-completion for --options | |||
2016-01-19 | Merge pull request #448 from colemickens/libinput | Drew DeVault | |
libinput configuration | |||
2016-01-19 | libinput | Cole Mickens | |
2016-01-17 | added basic zsh shell completion for sway, swaybg, and swaygrab | Seth Barberee | |
2016-01-17 | Add ffmpeg/imagemagick to depenency list | Drew DeVault | |
2016-01-17 | Copy filename from argv | Mikkel Oscar Lyderik | |
Fix #449 | |||
2016-01-15 | Merge pull request #445 from crondog/assign | Drew DeVault | |
cmd_assign | |||
2016-01-15 | cmd_assign | crondog | |
This implements cmd_assign. Basically a copy and paste from cmd_for_window however it has → handling and injects a `move container to workspace` | |||
2016-01-11 | Strip quotes from workspace name v2 | Mikkel Oscar Lyderik | |
This is a more general fix for #444 This reverts part of commit 222f0d44fcda494dca4d5278493a3082068743de. | |||
2016-01-11 | Strip quotes of each argv when handling command | Mikkel Oscar Lyderik | |
2016-01-11 | Strip quotes from workspace name. | Mikkel Oscar Lyderik | |
Fix #444 This is a temporary fix, the real fix is to store the commands as a formatted argv array, so they don't have to be reformatted all over the place. | |||
2016-01-09 | Merge pull request #443 from mikkeloscar/binding-event-input_code | Drew DeVault | |
Add bindcode to binding events. | |||
2016-01-09 | Add backwards compatability for binding event | Mikkel Oscar Lyderik | |
2016-01-09 | Add bindcode to binding events. | Mikkel Oscar Lyderik | |
2016-01-09 | Make enable-binding-event option have an affect. | Mikkel Oscar Lyderik | |
The option was added to late so it was never set in the build. | |||
2016-01-09 | Merge pull request #442 from mikkeloscar/bincode | Drew DeVault | |
Add support for bincode command | |||
2016-01-09 | Add support for bincode command | Mikkel Oscar Lyderik | |
If a bindsym and bincode maps to the same combination, the last one will overwrite any previous mappings. | |||
2016-01-08 | Make wallpaper optional (cmake flag) | Drew DeVault | |
2016-01-08 | Unescape string after doing var replacement | Mikkel Oscar Lyderik | |
Fix #426 | |||
2016-01-08 | Merge pull request #438 from mikkeloscar/binding-event | Drew DeVault | |
Implement IPC binding event (keyboard) | |||
2016-01-08 | Make IPC binding event support a compile time opt. | Mikkel Oscar Lyderik | |
2016-01-08 | Reduce duplicate code | Mikkel Oscar Lyderik | |
2016-01-08 | Implement IPC binding event (keyboard) | Mikkel Oscar Lyderik | |
This implements the IPC binding event for keyboard bindings. It is slightly different from the i3 implementation [1] since sway supports more than one non-modifier key in a binding. Thus the json interface has been changed from: { ... "symbol": "t", ... } to: { ... "symbols": [ "t" ], ... } [1] http://i3wm.org/docs/ipc.html#_binding_event | |||
2016-01-08 | Add function for duplication a sway_binding | Mikkel Oscar Lyderik | |
2016-01-08 | Add function for getting list of modifier names. | Mikkel Oscar Lyderik | |
Get an array of modifier names from modifier masks. | |||
2016-01-07 | Merge pull request #439 from mikkeloscar/bindsym-release | Drew DeVault | |
Implement bindsym --release | |||
2016-01-07 | Implement bindsym --release | Mikkel Oscar Lyderik | |
This is a "simple" version of --release (same as i3) that only supports a binding that contain one normal key. e.g.: bindsym --release $mod+x exec somthing-fun I didn't bother implementing it for a combination like `$mod+x+z` since it is a bit tricky to get right and also a bit weird to actually do on a keyboard. | |||
2016-01-06 | Merge pull request #434 from mikkeloscar/detect-modifier | Drew DeVault | |
Send IPC modifier event on bar_modifier up/down | |||
2016-01-05 | Fix whitespaces in cmake config | Mikkel Oscar Lyderik | |
2016-01-05 | Merge branch 'master' of github.com:SirCmpwn/sway | Mikkel Oscar Lyderik | |
2016-01-05 | Fix whitespace issues. | Mikkel Oscar Lyderik | |
2016-01-05 | Only send modifier event once for active modifiers | Mikkel Oscar Lyderik | |
This makes sure that a modifier event is only sent for active bar modifiers, and that it is only sent once for each of those modifiers. An active bar modifier is a modifier defined for a bar with `mode hide` and `hidden_state hide`. | |||
2016-01-05 | Merge pull request #436 from Kaligule/master | Drew DeVault | |
Clearer order of locations searched for config file. | |||
2016-01-05 | Clearer order of locations searched for config file. | Jøhannes Lippmann | |
The i3wm config locations are visited _before_ using the fallback configs. The man page was confusing - it talked about the fallback configs first, but also said they are looked at "at last". By changing the order of the sentences, this should be clearer. | |||
2016-01-05 | Init layout before checking config | Mikkel Oscar Lyderik | |
2016-01-05 | Add modifier key to bar_config json | Mikkel Oscar Lyderik | |
2016-01-05 | Move modifier name table to common/util.c | Mikkel Oscar Lyderik | |
Lookup of modifier names is required in several places, thus it makes sense to move it to a general place. | |||
2016-01-04 | Revert "Free wordexp_t in config.c:get_config_path" | Drew DeVault | |
This reverts commit 33b24736c78d9993a26d295ea3e56ad77d6f1390. | |||
2016-01-05 | Send IPC modifier event on bar_modifier up/down | Mikkel Oscar Lyderik | |
Detects when a bar modifier key is pressed/released and sends a modifier IPC event to any listeners (usually swaybars). This way a swaybar can listen on the modifier event and hide/show the bar accordingly (not implemented yet) The modifier event looks like this: { "change": "pressed", // or released "modifier": "Mod4" } | |||
2016-01-04 | Free wordexp_t in config.c:get_config_path | Drew DeVault | |
Thanks @jollywho | |||
2016-01-05 | Merge pull request #433 from crondog/issue431 | Mikkel Oscar Lyderik | |
Return focus to fullscreen view | |||
2016-01-05 | Return focus to fullscreen view | crondog | |
This fixes https://github.com/SirCmpwn/sway/issues/431 by returning focus to the fullscreen view. Also it fixes the issue with the fullscreen view pointer not being set which did my head in | |||
2016-01-05 | Detect bar modifier pressed/released | Mikkel Oscar Lyderik | |