#!/bin/sh
# on PPC run the gtkpbbuttons command to provide graphical feedback of
# the volume buttons, mute, etc...
# Copyright (C) 2002 by Ben Reser <ben@reser.org>
# Redistribution of this file is permitted under the terms of the 
# GNU Public License (GPL)

ARCH=`uname -m`
if [ "$ARCH" = "ppc" ];then
  gtkpbbuttons -d
fi
