I'd like to be able to quickly start a Google search from my desktop (Win XP), whether or not I have a browser open. Something along the lines of WinG, then I can simply start typing my search term and hit Enter.
Does such a solution exist?
|
I'd like to be able to quickly start a Google search from my desktop (Win XP), whether or not I have a browser open. Something along the lines of WinG, then I can simply start typing my search term and hit Enter. Does such a solution exist? |
||||
|
|
|
AutoHotKey will allow you to set up a custom script to open your browser and navigate to a desired page in one shot. For example, the script to launch Firefox and go to Google using Win + G is as simple as this:
|
|||
|
|
|
I use the following AutoHotKey script to search a word or phrase I've selected just about anywhere, for example in my browser, word-processor, help file, or IDE. That isn't exactly what you asked for, but I thought it might be useful anyway. Come to think of it, it probably could be modified to prompt for search term(s) when none are selected...
|
||||
|
|
|
Here is a possible solution. I have made a script in AutoHotKey. http://techtoll.in/1178/open-your-favorite-websites-with-just-a-keystroke/ |
|||
|
|
|
It's not difficult. All you really need is a way of opening a URL and a simple script to generate the URL you need, munging any special characters in the query, filling in the google.com domain and the rest of what Google expects. Here's very minimal (call it "proof of concept") example I just did with my C shell. The only special characters it treats are spaces, which it turns into + signs as expected by Google.
Having defined this procedure, if I type To do the same thing under cmd.exe, you'd probably use the |
||||
|
|