How to make it blindingly obvious which window is active

5

2

I use keyboard shortcuts rather heavily. I have a dual monitor setup. I also have virtuawin so I can switch between desktops.

The result of all this is that sometimes I will start using keyboard shortcuts in the wrong window. This can have disastrous effects. For example, what if I think I'm in firefox and use Ctrl-L to go to the location bar, but instead I end up deleting a line in Visual Studio 2008 (without noticing it?!). This could be very, very bad.

Is there a way that I can make it blindingly obvious which window is active? For example, could I find some tool which will gray out any inactive windows?

I would be willing to use autohotkey or a variety of other advanced tools to set up a solution.

Thanks.

K Robinson

Posted 2010-09-10T00:25:55.590

Reputation: 897

this problem has gotten so much worse in Windows 7. Wish I knew a simple trick to bring Win7 at least up to the WinXP level of picking out the active window. right now I have to activate and unactivate a window while looking at the title bar and toolbar button down below to figure it out. – jacobsee – 2012-10-04T19:33:50.670

Answers

4

Are you looking for more granularity than this?

alt text

BillP3rd

Posted 2010-09-10T00:25:55.590

Reputation: 5 353

2Problem with that is that it forces you to use the super ugly Windows Classic skin... – digitxp – 2010-09-10T14:57:47.593

I would prefer a way to dim an entire window when it's inactive, but this helps. +1 – K Robinson – 2010-09-10T19:10:35.960

Any ideas on how to make this work for office 2007? – K Robinson – 2010-09-10T19:54:52.197

There's good news and bad news. The good is that you can change the Word color scheme. It's described at http://office.microsoft.com/en-us/word-help/change-the-appearance-of-office-programs-HA010174912.aspx. The bad news if that your choices are pretty limited. You'll find more information at http://www.technologyquestions.com/technology/microsoft-office/225123-office-color-schemes.html.

– BillP3rd – 2010-09-10T20:30:59.613

1

digitxp

Posted 2010-09-10T00:25:55.590

Reputation: 13 502

1A little buggy (even the "improved" version linked at the bottom) but a great idea regardless, especially for those who's eyes strain easily. – John T – 2010-09-10T01:12:51.647

Linux (Compiz) has a plugin called ADD Helper that does the same thing. – digitxp – 2010-09-10T14:56:42.370

@JohnT: your note led me to find the ghoster.ahk thread; I found a 2008 version here which works OK: http://www.autohotkey.com/forum/post-188098.html#188098 but it has some bugs when dealing with some modal dialogs and it also breaks keepass's Ctrl-V capability.

– K Robinson – 2010-09-10T19:27:02.407

0

For Windows 10

I found this question while googling for this same issue on windows 10 and wanted to log my answer for others like me (even though this question was originally about winxp) :

open "Settings" app
-> "Personalization" tile
-> sidebar: "Colors"
-> scroll to "More options"
-> "Show accent color on the following surfaces"
-> check the box next to "Title bars"

Now the focused window will have a coloured title bar, and the other windows will have a white title bar.

Beware: this doesn't work on programs that don't use the windows color settings (spotify comes to mind) but as long as they're the exception and not the rule that shouldn't be an issue.

Joran Dox

Posted 2010-09-10T00:25:55.590

Reputation: 103

-1

Simple AHK solution, make the window blink:

SetTitleMatchMode,Fast
^x::
WinGetActiveTitle, Title
WinGetPos, X, Y, Width, Height, %Title%
Loop, 3
{
   WinHide,%Title%
   WinShow,%Title%
}
return

John T

Posted 2010-09-10T00:25:55.590

Reputation: 149 037

That looks like a great idea. Can autohotkey automatically detect when a new window gains focus? I need something that doesn't involve an active action to find out what's active (if I remembered to use a hotkey, I would just remember to glance at the title bar more carefully all the time). – K Robinson – 2010-09-10T18:51:30.480