xbattmon

simple battery monitor for X
git clone git://git.2f30.org/xbattmon
Log | Files | Refs | README | LICENSE

configure (216B)


      1 #!/bin/sh
      2 
      3 case `uname` in
      4 OpenBSD)
      5 	ln -sf config.bsd.mk config.os.mk
      6 	;;
      7 DragonFly)
      8 	ln -sf config.dfly.mk config.os.mk
      9 	;;
     10 Linux)
     11 	ln -sf config.linux.mk config.os.mk
     12 	;;
     13 *)
     14 	echo Unsupported system 1>&2
     15 	;;
     16 esac