mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
6 lines
224 B
Bash
Executable file
6 lines
224 B
Bash
Executable file
#!/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
|