mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
7 lines
224 B
Bash
7 lines
224 B
Bash
|
#!/bin/sh
|
||
|
for name in /usr/share/java/dguitar/*.jar ; do
|
||
|
CP=$CP:$name
|
||
|
done
|
||
|
cd /usr/share/dguitar
|
||
|
java -cp $CP -Dapple.laf.useScreenMenuBar=true -Dcom.apple.mrj.application.apple.menu.about.name=DGuitar dguitar.gui.DGuitar
|