aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/config.h
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-12-15 01:33:33 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-12-16 12:03:11 -0500
commit452a615bb8f546fbeaddd7bacc71b5c597ab5629 (patch)
treea8a2b726fd510e906f7c27eb8510eae2bdd986b3 /include/sway/config.h
parentinput/seatop_default: fix focusing floating titles (diff)
downloadsway-452a615bb8f546fbeaddd7bacc71b5c597ab5629.tar.gz
sway-452a615bb8f546fbeaddd7bacc71b5c597ab5629.tar.zst
sway-452a615bb8f546fbeaddd7bacc71b5c597ab5629.zip
seat_cmd_keyboard_grouping: change keymap to smart
This removes `seat <seat> keyboard_grouping keymap` and replaces it with `seat <seat> keyboard_grouping smart`. The smart keyboard grouping will group based on both the keymap and repeat info. The reasoning for this is that deciding what the repeat info should be for a group is either arbitrary or non-deterministic when multiple keyboards in the group have repeat info configured (unless somehow exposed to the user in a reproducible uniquely identifiable fashion).
Diffstat (limited to 'include/sway/config.h')
-rw-r--r--include/sway/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 3e3d2725..aef6694d 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -177,9 +177,9 @@ enum seat_config_allow_constrain {
177}; 177};
178 178
179enum seat_keyboard_grouping { 179enum seat_keyboard_grouping {
180 KEYBOARD_GROUP_DEFAULT, // the default is currently keymap 180 KEYBOARD_GROUP_DEFAULT, // the default is currently smart
181 KEYBOARD_GROUP_NONE, 181 KEYBOARD_GROUP_NONE,
182 KEYBOARD_GROUP_KEYMAP 182 KEYBOARD_GROUP_SMART // keymap and repeat info
183}; 183};
184 184
185enum sway_input_idle_source { 185enum sway_input_idle_source {