View Single Post
  #5 (permalink)  
Old January 31st, 2002
yourfriendgregd yourfriendgregd is offline
Novicius
 
Join Date: January 30th, 2002
Posts: 3
yourfriendgregd is flying high
Default

The desktop link still doesn't work. It looks like it all should. Below is the contents of my script verbatim. The ulimit is a fix for glibc 2.2 compatibility (so I am told). Below the script is the contents of the desktop link. I have it set to "run in a terminal" mode.

Greg


// begin runLime.sh
#!/bin/bash

# fixes for compatibility sake
ulimit -s 2048
cd /opt/LimeWire-2.1.3
J2SE_PREEMPTCLOSE=1
export J2SE_PREEMPTCLOSE

# original script
CLASSPATH=".:collections.jar:xerces.jar:jl011.jar"
export CLASSPATH
java -jar RunLime.jar
// end runLime.sh

// begin limewire.desktop
[Desktop Entry]
Comment=
Exec=/opt/LimeWire-2.1.3/runLime.sh
Icon=/opt/kde/share/icons/hicolor/32x32/apps/lime.png
Name=LimeWire
Path=/opt/LimeWire-2.1.3/
Terminal=1
TerminalOptions=
Type=Application
X-KDE-SubstituteUID=false
X-KDE-Username=
// end limewire.desktop
Reply With Quote