#!/bin/sh
# If the user has a lineakd.conf exists run lineakd -b
# lineakd supports multimedia keyboards extra keys
# Copyright (C) 2002 by Ben Reser <ben@reser.org>
# Redistribution of this file is permitted under the terms of the 
# GNU Public License (GPL)

# lineakd > 0.7 dont have -b switch, 
# removed (Olivier Thauvin <thauvin@aerov.jussieu.fr>)

if [ -f ~/.lineak/lineakd.conf ];then
  lineakd > /dev/null 2>&1 &
fi
