aboutsummaryrefslogtreecommitdiff
path: root/rootston
AgeCommit message (Collapse)Author
2017-11-10rootston: fix multiseat focusTony Crisci
2017-11-09rootston: roots_keyboard null checkTony Crisci
2017-11-09rootston: add missing properties to kb config mergeTony Crisci
2017-11-09wlr-keyboard: take out modifiers event struct (for now)Tony Crisci
2017-11-08rootston: remove old cursor implementationTony Crisci
2017-11-08Merge branch 'master' into feature/multiseatTony Crisci
2017-11-08rootston: drag iconsTony Crisci
2017-11-08rootston: request set cursorTony Crisci
2017-11-08rootston: cleanup for multiseatTony Crisci
2017-11-08Always read state from wlr_keyboard in the seatemersion
2017-11-08rootston: remove devices from seatTony Crisci
2017-11-08rootston: seat resize and rotateTony Crisci
2017-11-08rootston: guess seat for xwayland moveresizeTony Crisci
2017-11-07rootston: multiple activated viewsTony Crisci
2017-11-07rootston: log seat nameTony Crisci
2017-11-07rootston: input remove stubsTony Crisci
2017-11-07multiseat: somewhat workingTony Crisci
2017-11-07Merge pull request #394 from Ongy/xkb_fixDrew DeVault
Fix #393
2017-11-07works in review commentsMarkus Ongyerth
2017-11-07explains 2 way keybind trying.Markus Ongyerth
2017-11-07fix the keybind handling in rootston.Markus Ongyerth
As mentioned in https://github.com/swaywm/wlroots/issues/393 keybinds did't trigger / were checked with "odd" keys and modifiers. This commit sends the keycode through two paths, one to get the keycode and modifiers *after* xkb handles them, a secondary path to get a "raw" keysym without modifiers and then add the modifiers rootston knows about. This will result in the `[Alt]+[Shift]+2` combination I mention earlier going through the keybind detection twice. 1) `[Alt]+[at]` 2) `[Alt]+[Shift]+2` When either combination is found, the appropriate keybind is executed. The xkb handled version will be prefered over the "raw" version.
2017-11-05rootston: roots_cursorTony Crisci
2017-11-05Merge branch 'master' into feature/multiseatTony Crisci
2017-11-04rootston: move device init to seatTony Crisci
2017-11-04move keyboard to seatTony Crisci
2017-11-03Fix moving views when resizing below min sizeemersion
2017-11-03rootston: refactor keyboardTony Crisci
2017-11-03rootston: seat config by deviceTony Crisci
2017-11-02rootston: break up input.hTony Crisci
2017-11-02Use compositor theme for xwm cursoremersion
2017-11-01Merge pull request #365 from emersion/wayland-backend-transformDrew DeVault
Cursors ✕ Output Transformations fixes
2017-11-01Fix hidden software cursors, fix cursor transformations on DRM backendemersion
2017-11-01bugfix: dnd force cancelTony Crisci
2017-11-01rootston: fix startup with no configDominique Martinet
Would choke on NULL name on strcmp later on: #0 0x00007ffff6e0ad4a in __strcmp_sse2_unaligned () at /usr/lib/libc.so.6 #1 0x00005555555593d2 in config_get_keyboard (config=0x555555774f80, device=0x555555775768) at ../rootston/config.c:443 #2 0x000055555555d7e3 in keyboard_add (device=0x555555775768, input=0x555555e96d70) at ../rootston/keyboard.c:206 #3 0x000055555555ca39 in input_add_notify (listener=0x555555e96fa8, data=0x555555775768) at ../rootston/input.c:34 #4 0x00007ffff7ba2b80 in wl_signal_emit (signal=0x5555557754f8, data=0x555555775768) at /usr/include/wayland-server-core.h:388 #5 0x00007ffff7ba37e0 in wlr_x11_backend_start (backend=0x5555557754f0) at ../backend/x11/backend.c:286 #6 0x00007ffff7b9372d in wlr_backend_start (backend=0x5555557754f0) at ../backend/backend.c:29 #7 0x000055555555dcc0 in main (argc=1, argv=0x7fffffffe408) at ../rootston/main.c:39
2017-10-31Merge pull request #352 from emersion/output-cursorTony Crisci
Add wlr_output_cursor
2017-10-31rootston: end grab on escapeTony Crisci
2017-10-31Remove outdated TODOs, use wlr_surface_has_bufferemersion
2017-10-31Add multi-pointer exampleemersion
2017-10-31Fix cursor hotspot with rotated outputs on DRM backendemersion
2017-10-31Remove wlr_cursor_set_xcursor for nowemersion
2017-10-31Fix rootstonemersion
2017-10-30Merge pull request #358 from acrisci/refactor/sec-to-msecDrew DeVault
refactor input time_sec to time_msec
2017-10-30rename wlr_seat to seat on seat structsTony Crisci
2017-10-30rename seat handle to seat clientTony Crisci
2017-10-30refactor input time_sec to time_msecTony Crisci
2017-10-30Fix resize bounds check in rootsonValentin Hăloiu
2017-10-29Merge branch 'master' into feature/xwm-rewriteTony Crisci
2017-10-28Allow configuring output mode in rootstonDrew DeVault
Fixes #336
2017-10-28Merge pull request #324 from acrisci/feature/keyboard-redesignDrew DeVault
wlr-seat: keyboard redesign
2017-10-28Enforce resize bounds in rootstonemersion