summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
...
| * | | | reload: reset input configsLibravatar Brian Ashworth2019-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | This resets all input options to their defaults on reload. This also fixes some debug log typos in `input_manager_libinput_config_pointer`.
* | | | | Merge pull request #3397 from RedSoxFan/fix-swaybar-heightLibravatar Drew DeVault2019-01-13
|\ \ \ \ \ | | | | | | | | | | | | swaybar: obey height if given
| * | | | | swaybar: obey height if givenLibravatar Brian Ashworth2019-01-09
| |/ / / / | | | | | | | | | | | | | | | | | | | | If there is a bar height given, use that as the height rather than as a minimum height. This matches i3-gaps behavior.
* | | | | Merge pull request #3398 from RedSoxFan/toggle-input-eventsLibravatar Drew DeVault2019-01-13
|\ \ \ \ \ | | | | | | | | | | | | input events: toggle and ipc get_inputs
| * | | | | get_inputs: add libinput send events modeLibravatar Brian Ashworth2019-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add `libinput_send_events` to the IPC output for `get_inputs` to allow scripting of mode changes.
| * | | | | input_cmd_events: implement toggleLibravatar Brian Ashworth2019-01-09
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements toggling input events during runtime. This will not attempt to toggle to a mode that is not supported by the device. When toggling the wildcard input, the device specific input configs are altered. Each device will cycle one supported mode.
* | | | | Merge pull request #3408 from RedSoxFan/bar-paddingLibravatar Drew DeVault2019-01-13
|\ \ \ \ \ | | | | | | | | | | | | swaybar: adjustable status padding
| * | | | | swaybar: add status_edge_padding commandLibravatar Brian Ashworth2019-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds the bar subcommand `status_edge_padding <padding>` to set the padding used when the status line is on the right edge of the bar.
| * | | | | swaybar: add status_padding commandLibravatar Brian Ashworth2019-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds the bar subcommand `status_padding <padding>` which allows setting the padding used for swaybar. If `status_padding` is set to `0`, blocks will be able to take up the full height of the bar.
* | | | | | Merge pull request #3415 from RedSoxFan/swaybar-output-improvedLibravatar Drew DeVault2019-01-13
|\ \ \ \ \ \ | | | | | | | | | | | | | | swaybar: allow identifiers for output and tray
| * | | | | | swaybar: allow identifiers for output and trayLibravatar Brian Ashworth2019-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows `bar output` and `bar tray_output` to specify an output identifier. Output names should still work as well. This parses the output identifier from the xdg_output description, which wlroots currently sets to `make model serial (name)`. Since this could change in the future, all identifier comparisons are guarded by NULL-checks in case the description cannot be parsed to an identifier.
* | | | | | | Merge pull request #3412 from RedSoxFan/fix-cont-line-numLibravatar Ian Fan2019-01-12
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | config: fix line number with continued lines
| * | | | | | | config: fix line number with continued linesLibravatar Brian Ashworth2019-01-11
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the config has continued lines, `get_line_with_cont` may read more than one line of the actual file. When displaying line numbers for error messages, they should be the line number in the file to make it easy to find and fix the issue.
* / / / / / / Split swayidle from swayLibravatar Drew DeVault2019-01-12
|/ / / / / /
* | | | | | Merge pull request #3411 from RedSoxFan/fix-brace-detect-seekingLibravatar Ian Fan2019-01-12
|\ \ \ \ \ \ | |/ / / / / |/| | | | | config: do not reset pos when braces found
| * | | | | config: do not reset pos when braces foundLibravatar Brian Ashworth2019-01-11
|/ / / / / | | | | | | | | | | | | | | | | | | | | When a brace is found, the config file should not seek back to before the brace, otherwise the brace will be read multiple times.
* | | / / swaylock: Add caps lock state to indicatorLibravatar Robinhuett2019-01-10
| |_|/ / |/| | | | | | | | | | | | | | | Implements customization for the indicator as proposed in #2788 with comments from #3367 in mind. The default behaviour does not change exept for the caps lock text color.
* | | | Merge pull request #3400 from ianyfan/config-braceLibravatar emersion2019-01-10
|\ \ \ \ | |_|/ / |/| | | config.c: fix brace detection at end of file
| * | | config.c: fix brace detection at end of fileLibravatar Ian Fan2019-01-10
| | | |
* | | | Merge pull request #3341 from RedSoxFan/mouse-bindings-improvedLibravatar Ian Fan2019-01-10
|\ \ \ \ | | | | | | | | | | Improve mouse button parsing: helpers and bind{code/sym}
| * | | | bind{code,sym}: utilize mouse button helpersLibravatar Brian Ashworth2019-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This modifies `bindcode` and `bindsym` to use `get_mouse_bindcode` and `get_mouse_bindsym`, respectively, to parse mouse buttons. Additionally, the `BINDING_MOUSE` type has been split into `BINDING_MOUSECODE` and `BINDING_MOUSESYM` to match keys and allow for mouse bindcodes to be used. Between the two commands, all button syms and codes should be supported, including x11 axis buttons.
| * | | | Add helpers for improved mouse button parsingLibravatar Brian Ashworth2019-01-09
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following helper functions have been added to aid with parsing mouse buttons from a string: 1. `get_mouse_bindsym`: attempts to parse the string as an x11 button (button[1-9]) or as an event name (ex BTN_LEFT or BTN_SIDE) 2. `get_mouse_bindcode`: attempts to parse the string as an event code and validates that the event code is a button (starts with `BTN_`). 3. `get_mouse_button`: this is a conveniency function for callers that do not care whether a bindsym or bindcode are used and attempts to parse the string as a bindsym and then bindcode. None of these functions are used in this commit. The sole purpose of this commit is to make the larger set more granular and easier to review/manipulate. There will be a series of commits following this one that will modify any command which uses a mouse button to use these helpers.
* | | | Merge pull request #3394 from RedSoxFan/bar-block-renderLibravatar emersion2019-01-10
|\ \ \ \ | | | | | | | | | | swaybar: fix rendering of border and background
| * | | | swaybar: fix rendering of border and backgroundLibravatar Brian Ashworth2019-01-09
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes the rendering of borders and backgrounds for blocks. This also makes the following changes: * both borders and padding are scaled with the output * both lines and rectangles are rendered without an antialiasing to avoid bleeding outside the desired area
* | | | Merge pull request #3399 from RedSoxFan/fix-output-destruction-segfaultsLibravatar emersion2019-01-10
|\ \ \ \ | | | | | | | | | | Fix segfaults on output destruction
| * | | | Fix segfaults on output destructionLibravatar Brian Ashworth2019-01-10
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes two causes of segfaulting when an output is destroyed. The first occurred when an output was never enabled. The issue was that the destroy signal was never initialized so when it was emitted, sway segfaulted. This was fixed by moving the initialization into `output_create` since all outputs, regardless of whether they have ever been enabled, will be destroyed at some point. The second occurred when the cursor was on an output that was being destroyed. The sway output would have already been removed, but if there are other outputs, a cursor rebase would still occur. Since the wlr_output still existed and the sway output was destroyed, the cursor could be over nothing, resulting in a segfault when trying to get the sway output, which was destroyed.
* | | | Merge pull request #3396 from RedSoxFan/scroll-titlebar-borderLibravatar emersion2019-01-10
|\ \ \ \ | |/ / / |/| | | cursor: allow scrolling tabs/stack on title border
| * | | cursor: allow scrolling tabs/stack on title borderLibravatar Brian Ashworth2019-01-09
|/ / / | | | | | | | | | | | | | | | This allows tabbed and stacked containers to be scrolled through when the cursor is over the border of the title bar. The borders around the other three edges of the contents should not be affected by this change.
* | | Reset container dimensions when moving into workspace from directionLibravatar Ryan Dwyer2019-01-09
| | |
* | | Merge pull request #3391 from jbeich/freebsdLibravatar emersion2019-01-09
|\ \ \ | |/ / |/| | Simplify FreeBSD build
| * | Simplify evdev includes on FreeBSD by relying on up-to-date packageLibravatar Jan Beich2019-01-09
|/ / | | | | | | | | | | | | | | | | | | | | | | evdev-proto is installed by a dependency, so some files have been missed: In file included from ../sway/input/cursor.c:3: /usr/local/include/libevdev-1.0/libevdev/libevdev.h:30:10: fatal error: 'linux/input.h' file not found #include <linux/input.h> ^~~~~~~~~~~~~~~ ../swaybar/i3bar.c:3:10: fatal error: 'linux/input-event-codes.h' file not found #include <linux/input-event-codes.h> ^~~~~~~~~~~~~~~~~~~~~~~~~~~
* | Merge pull request #3386 from RedSoxFan/seat-reload-waitLibravatar emersion2019-01-09
|\ \ | | | | | | reload: apply seat cfgs after reading entire cfg
| * | reload: apply seat cfgs after reading entire cfgLibravatar Brian Ashworth2019-01-09
| | | | | | | | | | | | | | | | | | | | | Wait until all seat configs have been read before applying them on reload. This prevents unnecessary attachment/detachment of input devices and therefore creation/destruction of seat devices as individual lines are read.
* | | Merge pull request #3390 from RedSoxFan/execute-seatLibravatar emersion2019-01-09
|\ \ \ | | | | | | | | cmd_bind: pass the seat to execute_command
| * | | cmd_bind: pass the seat to execute_commandLibravatar Brian Ashworth2019-01-09
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | `seat_execute_command` was incorrectly setting `config->handler_context.seat` before calling `execute_command`. Since `execute_command` was being called with a `NULL` seat argument, `execute_command` was setting `config->handler_context.seat` to the default seat. This resulted in all bindings being executed on the default seat and causing undesired behavior for devices on other seats.
* | | Merge pull request #3372 from ianyfan/trayLibravatar emersion2019-01-09
|\ \ \ | | | | | | | | swaybar: handle SNI signals better
| * | | swaybar: improve tray loggingLibravatar Ian Fan2019-01-08
| | | |
| * | | swaybar: handle SNI signals betterLibravatar Ian Fan2019-01-08
| | | | | | | | | | | | | | | | | | | | This fixes a crash caused by callbacks not matching the right sender, and frees old values later, before they are re-assigned.
| * | | swaybar: free the right item during tray destructionLibravatar Ian Fan2019-01-08
| | | | | | | | | | | | | | | | | | | | Also added a comment to make more obvious the reason for comparing sni->status[0] == 'N'
* | | | Merge pull request #3389 from RedSoxFan/swap-context-seatLibravatar emersion2019-01-09
|\ \ \ \ | | | | | | | | | | cmd_swap: use handler context seat
| * | | | cmd_swap: use handler context seatLibravatar Brian Ashworth2019-01-09
| | |/ / | |/| | | | | | | | | | Use the handler context seat instead of the default seat
* | | | Merge pull request #3387 from RedSoxFan/keyboard-timer-before-executeLibravatar emersion2019-01-09
|\ \ \ \ | |/ / / |/| | | keyboard: update repeat timer before execution
| * | | keyboard: update repeat timer before executionLibravatar Brian Ashworth2019-01-09
|/ / / | | | | | | | | | | | | | | | Since the keyboard can be destroyed by executing a binding (reloading with a different seat attachment config), update the repeat timer before executing the binding.
* | | Merge pull request #3385 from robertgzr/reset_output_mappingLibravatar Drew DeVault2019-01-08
|\ \ \ | |/ / |/| | cursor: allow mapping to all outputs
| * | cursor: allow mapping to all outputsLibravatar Robert Günzler2019-01-09
| | | | | | | | | | | | Running `input "<input>" map_to_output *` resets the mapping to all outputs
* | | Merge pull request #3275 from ianyfan/remove-readlineLibravatar emersion2019-01-08
|\ \ \ | | | | | | | | Rewrite strip_whitespace and remove readline.c
| * | | fixup! stringop.c: rewrite strip_whitespaceLibravatar Ian Fan2019-01-02
| | | |
| * | | fixup! config.c: re-enable backslash continuation in config fileLibravatar Ian Fan2019-01-01
| | | |
| * | | config.c: re-enable backslash continuation in config fileLibravatar Ian Fan2019-01-01
| | | |
| * | | Remove readline.cLibravatar Ian Fan2019-01-01
| | | | | | | | | | | | | | | | | | | | All occurrences of read_line have been replaced by getline. peek_line has been absorbed into detect_brace.