From 512c7050e228094ac848b404f8bf45426d6b2230 Mon Sep 17 00:00:00 2001 From: Christian Rondeau Date: Fri, 25 Jul 2014 14:25:00 -0400 Subject: [PATCH] Update README and add a tooltip to the taskbar icon --- GoToWindow/GoToWindowApplicationContext.cs | 3 ++- README.md | 14 +++++++++++--- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/GoToWindow/GoToWindowApplicationContext.cs b/GoToWindow/GoToWindowApplicationContext.cs index 9bf3fcf..2302525 100644 --- a/GoToWindow/GoToWindowApplicationContext.cs +++ b/GoToWindow/GoToWindowApplicationContext.cs @@ -47,7 +47,8 @@ private void InitializeComponent() var notifyIcon = new NotifyIcon { Icon = LoadIconFromEmbeddedResource(), - ContextMenu = new ContextMenu(new[] {configMenuItem, exitMenuItem}) + ContextMenu = new ContextMenu(new[] {configMenuItem, exitMenuItem}), + Text = "Go To Window" }; notifyIcon.DoubleClick += (obj, args) => _app.Show(); diff --git a/README.md b/README.md index 7ded3bd..e304dc0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Go To Window -**This is not yet even alpha** +**Alpha** - [Download](https://github.com/christianrondeau/GoToWindow/releases) No more need for alt-tabbing through dozens of windows, or looking for your windows in the task bar. Simply press a shortcut, type a few letters from the window title or process name and press enter. @@ -8,9 +8,17 @@ For the keyboard maniacs. ## Usage -Since this is not even alpha, you'll have to build the software and bind a shortcut yourself. +Launch `GoToWindow.exe`. You can also place it in in the Windows Startup menu to launch it automatically with Windows. -Once the main window is opened, either use the arrows to navigate or type something, and press enter to focus the window. Press escape to close. +* Press `Alt` + `Tab` to open the windows list. All windows are shown, with the most recently accessed first. + +* Press `Enter` to go to the previously accessed window (same behavior as standard Windows `Alt` + `Tab`) + +* Press the `Up` and `Down` arrows to navigate in the list, and press `Enter` to switch to the application. + +* Start typing keywords to filter the list. Note that only windows that contain all words in either the window title _or_ the process name will be shown. + +* Press `Escape` to close the window. ## License