LonerD

|
Posted: Tue Sep 11, 2012 23:07 Post subject: |
|
|
Mellomann
Code: | #SingleInstance ignore
#Persistent
#NoTrayIcon
if WinActive( "ahk_class TTOTAL_CMD" )
{
WinSetTitle Total Commander
}
Return |
А можно и с часиками в заголовке сделать :
Code: | #SingleInstance ignore
#Persistent
#NoTrayIcon
SetTimer subTimer, 500
subTimer:
if WinActive( "ahk_class TTOTAL_CMD" )
{
FormatTime, time,, yyyy.MM.dd - HH:mm:ss
WinSetTitle Total Commander by Vasya Pupkin - %time%
}
Return |
|
|