#!/usr/bin/bash

#
# This wrapper is just to stop the annoying error messages
# from the real xkbcomp from messing up the console.
#
XKB_BIN=/usr/X11/bin/xkbcomp;

exec ${XKB_BIN} >/dev/null 2>&1;
