Results 1 to 2 of 2
I have one program in my pc, written for Windows, but not requiring installation. There is just one executable file. This program (Subtitle Processor) runs fine via Wine, but because ...
- 01-23-2007 #1Just Joined!
- Join Date
- Jan 2007
- Posts
- 8
How to add shortcut to Applications menu
I have one program in my pc, written for Windows, but not requiring installation. There is just one executable file. This program (Subtitle Processor) runs fine via Wine, but because of hasn't been installed it does not appear in wine menu.
I put it to program files, and now i want to add a shortcut in the applications menu (via Alacarte Menu Editor). How to do that?
- 01-23-2007 #2
What I do for things like this is write a short shell script that calls wine to run the program. Something like:
I save the script somewhere in my system path, such as /usr/local/bin (or ~/bin if you're on a system where you don't have write access to /usr/local/bin), then use the regular menu editor to add a menu entry.Code:#!/bin/bash cd ~/.wine/Program/ Files wine 'Subtitle Processor.exe'
Note that you can put the script anywhere you want; I just use a */bin directory because it's convenient.Stand up and be counted as a Linux user!


Reply With Quote
