Ian Fan
dd1d6255f0
ipc: add window::focus event
6 years ago
Ian Fan
f0310933c8
ipc: add window::close event
6 years ago
Ian Fan
87ccf18964
ipc: add workspace::init event
6 years ago
Ian Fan
e8b179e313
ipc: add shutdown event
6 years ago
Drew DeVault
f078f7fdfa
Merge pull request #2397 from chr0me-sh/hide-cursor-if-no-pointer
...
XCursor is not configured if no pointer device is available
6 years ago
chr0me
77d74dd34f
XCursor is not configured if no pointer device is available
6 years ago
Ryan Dwyer
f91fd78b99
Merge pull request #2395 from RedSoxFan/create-mouse-binding-list
...
Create list for mouse bindings when creating new mode
6 years ago
Brian Ashworth
00a00aacef
Create list for mouse binds when creating new mode
6 years ago
Drew DeVault
f19add2702
Merge pull request #2390 from emersion/fix-fullscreen-segfault
...
Fix segfault with fullscreen
6 years ago
emersion
15c19572cf
Fix segfault with fullscreen
6 years ago
Drew DeVault
cbd0c3ec40
Merge pull request #2367 from emersion/iterator-redesign
...
Refactor surface iterators
6 years ago
Drew DeVault
878d1ddd07
Merge pull request #2387 from 1ace/feature/bash-completion
...
bash completion
6 years ago
Drew DeVault
6c30b3fcc8
Merge pull request #2381 from frsfnrrg/key-repeat
...
Implement key repeat for keybindings
6 years ago
emersion
c1bf8d04be
Merge pull request #2388 from 1ace/fix/delete-swaygrab
...
delete references to swaygrab
6 years ago
Eric Engestrom
52a27f1529
delete references to swaygrab
6 years ago
emersion
4985667826
Merge pull request #2385 from 1ace/fix/include
...
util.h: add missing include
6 years ago
Eric Engestrom
b9d531b318
meson: install bash completion
6 years ago
Eric Engestrom
c4b4da5dc4
bash: add completion for swayidle
6 years ago
Eric Engestrom
4a8a19d21f
bash: add completion for swaylock
6 years ago
Eric Engestrom
21609f8af2
bash: add completion for swaymsg
6 years ago
Eric Engestrom
27e89cf61d
bash: add completion for sway
6 years ago
emersion
a0dc8032e1
Merge pull request #2384 from 1ace/fix/zsh-completion
...
zsh: fix sway completion
6 years ago
Eric Engestrom
9f59885928
zsh: fix sway completion
6 years ago
Eric Engestrom
c6a6faaeae
util.h: add missing include
...
parse_boolean() takes and returns a `bool`
6 years ago
Drew DeVault
5f8676f214
Merge pull request #2383 from RedSoxFan/fix-title-scale
...
Fix title textures on scale change
6 years ago
Brian Ashworth
b8efdeae29
Fix title textures on scale change
6 years ago
Drew DeVault
8dacd0639c
Enable unstable wlroots features
6 years ago
frsfnrrg
8dbbfa5965
Bindings use advised keyboard repeat parameters
...
Now 'repeat_delay' and 'repeat_rate' control the initial delay
and rate (per second) of repeated binding invocations.
If the repeat delay is zero, binding repetition is disabled.
When the repeat rate is zero, the binding is repeated exactly
once, assuming no other key events intervene.
6 years ago
frsfnrrg
e33dfbfa75
Implement key repeat for pressed key bindings
...
Each sway_keyboard is provided with a wayland timer event source.
When a valid keypress binding has been found, a callback to
handle_keyboard_repeat is set. Any key event will either clear
the callback or (if the new key event is a valid keypress binding)
delay the callback again.
6 years ago
Drew DeVault
ca8f177e14
Merge pull request #2379 from emersion/xwayland-unmanaged
...
Don't give focus if xwayland window has a type hint
6 years ago
emersion
9a7e436fad
Don't give focus if xwayland window has a type hint
6 years ago
emersion
0ad865f0b7
Make output_surface_for_each_surface_iterator static
6 years ago
emersion
9951b2ec33
Remove unused output_from_wlr_output
6 years ago
emersion
fe0750fec1
Remove output_surface_for_each_surface from header
6 years ago
emersion
8d5cc8625c
Completely switch over to new iterators
6 years ago
emersion
e9d674cfd2
wip: redesign output_view_for_each_surface iterator
6 years ago
emersion
a0dd977617
wip: redesign output_layer_for_each_surface iterator
6 years ago
emersion
dbf6dd0dae
wip: redesign output_drag_icons_for_each_surface iterator
6 years ago
emersion
d2172bd331
wip: redesign output_unmanaged_for_each_surface iterator
6 years ago
Ryan Dwyer
8fcf0505d0
Merge pull request #2380 from mariusor/tap-button-map-man-fix
...
Escaping underscores in tap_button_map
6 years ago
Ryan Dwyer
b2f58af46c
Merge branch 'master' into tap-button-map-man-fix
6 years ago
emersion
5af776e734
Merge pull request #2376 from swaywm/virtual-keyboard
...
Add virtual keyboard protocol
6 years ago
Marius Orcsik
7b9aee5451
Escaping underscores in tap_button_map
6 years ago
Drew DeVault
cded0ff7e8
Merge pull request #2371 from ggreer/numlock
...
Don't enable numlock by default.
6 years ago
Drew DeVault
1e65439a54
Add virtual keyboard protocol
...
Ref #2373
6 years ago
Geoff Greer
30fee94354
Don't enable numlock by default. This fixes an annoying issue where laptop keyboards would have 'numlock mode' enabled, remapping parts of the alphabet to numbers.
6 years ago
Drew DeVault
53069f1403
Merge pull request #2360 from RyanDwyer/floating-containers
...
Allow containers to float
6 years ago
Drew DeVault
e4b54ac16e
Merge pull request #2368 from RyanDwyer/handle-out-of-fds
...
Handle out-of-fd situations gracefully for transaction and urgent timers
6 years ago
Drew DeVault
68d6307aa6
Merge pull request #2365 from RyanDwyer/fix-cmd-defer-crash
...
Fix crash when a deferred command destroys a workspace
6 years ago
Ryan Dwyer
84cd22c8cb
Fix crash when a deferred command destroys a workspace
...
Example config that produces the crash (with a single output):
workspace 1
workspace 2
Prior to this commit, container_workspace_free would manually mark the
L_FLOATING container as destroying and free it. This assumed the
L_FLOATING container would never be involved in a transaction. This was
a safe assumption when it was implemented, but became an incorrect
assumption once parent/child relationships became transactionised.
This commit removes the L_FLOATING free from container_workspace_free.
When the workspace is destroyed, it starts the normal destroy process on
the L_FLOATING container so it can be freed via transactions.
6 years ago