From e787bc60e50da65204e53b7587fca05d011e38ba Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Tue, 30 Dec 2008 10:53:20 -0500 Subject: [PATCH] Use a more generic glob for input devices. --- wayland-system-compositor.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wayland-system-compositor.c b/wayland-system-compositor.c index 09daebf..a2f534b 100644 --- a/wayland-system-compositor.c +++ b/wayland-system-compositor.c @@ -859,13 +859,13 @@ post_output_geometry(struct wl_client *client, struct wl_object *global) static const char gem_device[] = "/dev/dri/card0"; -static const char *macbook_air_default_input_device[] = { - "pci-0000:00:1d.2-usb-0:2:1*event*", +static const char *default_input_device[] = { + "*event*", NULL }; static const char *option_background = "background.jpg"; -static const char **option_input_devices = macbook_air_default_input_device; +static const char **option_input_devices = default_input_device; static const GOptionEntry option_entries[] = { { "background", 'b', 0, G_OPTION_ARG_STRING, -- 2.7.4