![]() |
|
#29
|
||||
|
Quote:
You want to run this in a terminal then you can make a script to run it later and associate the equivalent of a Linux desktop shortcut which I'll explain farther down in this post. With Wine you need to manually pass options since you're calling the Windows executable with it. To test that first go to where eqgame.exe is located, open a terminal and run: Code:
wine eqgame.exe patchme Code:
#!/bin/sh # start everquest cd /home/repo/.wine/drive_c/Program\ Files\ \(x86\)/EverQuest/ ; taskset -c 0 /usr/bin/wine eqgame.exe patchme Further, you can make a .desktop file so the Everquest program is searchable in whatever desktop environment you're using (XFCE here) but I would first get things working via a script or command line before further customizing for convenience. Again, adjust paths and the name of your script accordingly. Pasting this into a terminal would create the appropriate .desktop entry. Code:
cat > /home/repo/.local/share/applications/everquest.desktop <<EOF [Desktop Entry] Name=Everquest Comment=Everquest Exec=sh /home/repo/scripts/start-eq.sh Icon=/home/repo/.wine/drive_c/Program Files/EverQuest/Everquest.ico Terminal=false Type=Application Encoding=UTF-8 Categories=Games; Path= EOF
__________________
Prexus: (00-04) <Clan nan Dreolan>
Cadiz (70 NEC) epic 1.0 Grumplescratch (65 WAR) epic 1.0 Tzartole (62 MNK) epic 1.0 | |||
|
Last edited by cadiz; 02-02-2019 at 10:13 PM..
| ||||
|
|