This tutorial will explain how to Create working Wine desktop launcher.
Reasons for creating Wine desktop launcher
◦Some games launcher exe files just don’t work right, and you have to use the main exe file to get the program to run.
◦Wine is picky it wants to be in the directory the file is in when you run the exe. Normal menu items point to the program using the path, i.e. /home/ed/.wine/la la la .exe. That won’t cut it.
So, you have to create a script that will change to the proper directory, then run the right file. Here is how you do that. We are going to create a launcher for World of Warcraft.
Open the terminal
----------------------------------------------------
gksudo gedit
-----------------------------------------------------
copy the following lines
------------------------------------------------------------------
#!/bin/bash
cd ~/.wine/drive_c/World\ of\ Warcraft/
wine Wow.exe -opengl
---------------------------------------------------------------------
Save the file as wowlauncher.sh under /bin (you can use the location which is easy for you to remember)
Close the file
Now you need to give execute permissions for your script
-----------------------------------------------------------------
chmod a+x /bin/wowlauncher.sh
-----------------------------------------------------------------
Create desktop launcher
If you want to Create desktop launcher right click on the desktop and choose Create Launcher.
Under Name, type World of Warcraft .
Under Command, type /bin/wowlauncher.sh
Enter Comment
Finally Click OK.
You can create which ever launcher you want with the same procedure
If you want to create fallout2 launcher use the following script
-------------------------------------------------------------------------------------
#!/bin/bash
cd ~/.wine/drive_c/Program\ Files/Interplay/Fallout\ 2
wine FALLOUT2.exe
-------------------------------------------------------------------------------------
How to Create Wine desktop launcher
Related Posts:
Convert PDF to TXT in Ubuntu LinuxUse pdftotext utility can be used to convert Portable Document Format (PDF) files to plain text. $ sudo apt-get install poppler-utils usage: $ pdf… Read More
Install LTSP in Ubuntu 11.04 Natty Narwhal Linux Terminal Server Project (LTSP) is a free and open source software for Linux that allows many people to simultaneously use the same computer… Read More
Best Audio Tools for Ubuntu LinuxPlay and Manage Music in Linux Rhythmbox is a music software originally inspired by Apple's iTunes. It is based on the powerful GStreamer media framew… Read More
Enable Process Accounting in Ubuntu: Acct will log user processIf you Enable process accounting in your system, it will help you to keep track of your user processes. It is very useful for System administrators fo… Read More
Play swf file(Macromedia Flash) on Ubuntu / Debian Linux swfdec-gnome is a very good Tool to play SWF files (Macromedia Flash) on GNOME. This package contains programs to integrate Flash functionality i… Read More
0 comments:
Post a Comment