Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-01-04 | Merge pull request #432 from mikkeloscar/fix-sway-multikey | Drew DeVault | |
Fix overwriting current pressed keys. | |||
2016-01-04 | Fix overwriting current pressed keys. | Mikkel Oscar Lyderik | |
This fixes a bug where the key at index 0 in the `key_state_array` would be overwritten by the next pressed key. This broke any bindings consisting of multiple non-mod keys like: `$mod+a+b`. | |||
2016-01-03 | Merge pull request #430 from crondog/swaybarlog | Drew DeVault | |
swaybar: fix logging | |||
2016-01-04 | swaybar: fix logging | crondog | |
Optionally turn on debugging in swaybar. I acidentally introduced persistent logging in a previous commit | |||
2016-01-03 | Merge pull request #429 from mikkeloscar/bar-workspace-buttons | Drew DeVault | |
swaybar: Implement workspace_buttons yes|no | |||
2016-01-03 | swaybar: Implement workspace_buttons yes|no | Mikkel Oscar Lyderik | |
2016-01-03 | Merge pull request #428 from mikkeloscar/bar-mode-indicator | Drew DeVault | |
swaybar: Implement binding_mode_indicator | |||
2016-01-03 | swaybar: Implement binding_mode_indicator | Mikkel Oscar Lyderik | |
2016-01-03 | Merge pull request #427 from mikkeloscar/ipc-update | Drew DeVault | |
Refactor IPC server/client | |||
2016-01-03 | Add type to returned response. | Mikkel Oscar Lyderik | |
Makes `ipc_recv_response` return a struct with size, type and payload rather than just the payload string. This is useful if the type has to be checked on the client. | |||
2016-01-03 | Add IPC event types | Mikkel Oscar Lyderik | |
Adds custom IPC_EVENT_* types | |||
2016-01-03 | swaybar: rename ipc_listen_sock.. to ipc_event_sock.. | Mikkel Oscar Lyderik | |
2016-01-03 | Merge pull request #425 from mikkeloscar/bar-strip-ws-num | Drew DeVault | |
Only strip when starting with a num | |||
2016-01-03 | Only strip when starting with a num | Mikkel Oscar Lyderik | |
This makes sure the `:` isn't striped if you have a workspace named: `:something`. | |||
2016-01-03 | Merge pull request #424 from mikkeloscar/bar-strip-ws-num | Drew DeVault | |
swaybar: Implement strip_workspace_numbers | |||
2016-01-03 | swaybar: Implement strip_workspace_numbers | Mikkel Oscar Lyderik | |
2015-12-30 | Merge pull request #421 from crondog/splittoggle | Drew DeVault | |
split toggle | |||
2015-12-31 | split toggle | crondog | |
Not sure if you will accept this, but i find it useful (I use it when opening new terminal windows on a workspace v2: add short hand command and docs | |||
2015-12-29 | Merge pull request #419 from crondog/fullscreen | Drew DeVault | |
Dont try and fullscreen a workspace with no views | |||
2015-12-30 | Dont try and fullscreen a workspace with no views | crondog | |
Found this completely by accident | |||
2015-12-29 | Merge pull request #417 from mikkeloscar/remove-log-line | Drew DeVault | |
saybar: remove stray logline | |||
2015-12-29 | Merge pull request #418 from mikkeloscar/sway-handle-sigterm | Drew DeVault | |
Handle SIGTERM sent to sway | |||
2015-12-29 | Handle SIGTERM sent to sway | Mikkel Oscar Lyderik | |
This makes sway handle and gracefully shut down everything when receiving a SIGTERM. Fix #416 | |||
2015-12-29 | saybar: remove stray logline | Mikkel Oscar Lyderik | |
2015-12-29 | Fix use-after-free when closing fullscreen views | Drew DeVault | |
2015-12-28 | Add bar to default config | Drew DeVault | |
Using somewhat saner colors than the i3 default | |||
2015-12-28 | Add default wallpaper | Drew DeVault | |
Closes #238 | |||
2015-12-28 | Merge pull request #415 from mikkeloscar/bar-separator | Drew DeVault | |
swaybar: Add support for custom separator symbol | |||
2015-12-28 | swaybar: Add support for custom separator symbol | Mikkel Oscar Lyderik | |
2015-12-28 | Merge pull request #414 from sce/fix_layout_calc | Drew DeVault | |
Fix layout calculations | |||
2015-12-28 | handlers: geometry_request: Better debug output. | S. Christoffer Eliesen | |
Previous output was confusing. | |||
2015-12-28 | arrange_windows_r: Round pixels to match reality, fixes calculations. | S. Christoffer Eliesen | |
If the width or height of a container can't be evenly distributed to its children, then the layout algorithm still thought it got it right (due to using decimals) which caused a gap of one or more pixels for some window arrangements. This is fixed by this patch by first rounding off the width and height (so that decimals are never introduced) and then adjusting the last view in a container to fill the remaining pixels (which now is counted correctly due to the decimals being removed). Also, due to the way gaps are implemented, an odd sized gap can never be aligned properly, so just adjust to closest even number. | |||
2015-12-28 | arrange_windows_r: Bring parent coordinates into layout calculations. | S. Christoffer Eliesen | |
This brings consistency into the algorithm (instead of resetting and then fetching again). | |||
2015-12-27 | Merge pull request #409 from mikkeloscar/bar-airblade-features | Drew DeVault | |
swaybar: Add support for Airblade i3bar extensions | |||
2015-12-27 | Update README | Drew DeVault | |
2015-12-27 | Merge pull request #410 from mikkeloscar/free-ipc-response | Drew DeVault | |
swaybar: Free unused IPC response | |||
2015-12-27 | swaybar: Free unused IPC response | Mikkel Oscar Lyderik | |
2015-12-27 | swaybar: if-else style fixes | Mikkel Oscar Lyderik | |
2015-12-27 | swaybar: Add support for Airblade i3bar extensions | Mikkel Oscar Lyderik | |
This extends the i3bar protocol implementation with the following features from @Airblade/i3: * background * border * border_top, border_bottom, border_left, border_right A block will now be rendered like this: ``` (border_left + margin) + width + (margin + border_right) + sep ``` Where `border_left/border_right` and their related margin is only drawn if the `border` is specified and the border has a width > 0 (default is 1). `border_top` and `border_bottom` does not affect the height of the bar (no margin is added), thus it will be drawn behind the text if it is too big. The user should specify a bar height if more space between top/bottom borders are required. | |||
2015-12-25 | Merge pull request #408 from mikkeloscar/add-focus-sibling | Drew DeVault | |
Focus new sibling added to container | |||
2015-12-25 | Focus new sibling added to container | Mikkel Oscar Lyderik | |
This makes sure that the window being added to a container gets focus. | |||
2015-12-25 | Merge pull request #407 from mikkeloscar/trigger-on-move-floating | Drew DeVault | |
Trigger workspace init event (floating) | |||
2015-12-25 | Trigger workspace init event (floating) | Mikkel Oscar Lyderik | |
Triggers workspace init event when moving a floating window to a new workspace. This is a follow up on #391 which didn't handle floating windows. | |||
2015-12-25 | Merge pull request #406 from mikkeloscar/fix-swaybar-json | Drew DeVault | |
swaybar: Fix json related crash. | |||
2015-12-25 | swaybar: remove random whitespaces | Mikkel Oscar Lyderik | |
2015-12-25 | swaybar: Fix json related crash. | Mikkel Oscar Lyderik | |
This should fix the random json related crashes in swaybar. The crashes occured because the same socket was used for listening on workspace events and requesting workspace info, resulting in a unreliable message queue on the socket. The solution is to use one socket for the events and one socket for reliably requesting workspace/output info. | |||
2015-12-24 | Merge pull request #403 from crondog/master | Drew DeVault | |
swaybar: min_width and align | |||
2015-12-24 | Merge pull request #405 from robotanarchy/add-voidwiki-link-to-readme | Drew DeVault | |
Readme: add link to sway article in Void Linux wiki | |||
2015-12-25 | Merge branch 'master' of https://github.com/SirCmpwn/sway | crondog | |
2015-12-24 | Readme: add link to sway article in Void Linux wiki | robotanarchy | |