适用于 Windows 的类似 Quake/Doom 的命令提示符

won*_*nea 15 powershell command-line

我在使用类似 Doom 的命令提示符,通过它我可以按下 CTRL Tab 等键盘快捷键,命令提示符将从顶部向下滚动,如 Doom、Quake 等。

此外,如果它与 Powershell 一起使用会更好。

小智 13

请参阅http://poshconsole.codeplex.com - Joel 实施了一种“地震模式”,其工作方式与您所说的完全一样。


mjs*_*jsr 10

poshconsole 不太好用,他的开发也不是很活跃。我建议你安装 console2 http://sourceforge.net/projects/console/和autohotkey , http://www.autohotkey.com/,并使用这个脚本:

#|::

DetectHiddenWindows, on
IfWinExist ahk_class Console_2_Main
{
IfWinActive ahk_class Console_2_Main
  {

        WinHide ahk_class Console_2_Main
        if(temptitle="") 
            WinActivate ahk_class Shell_TrayWnd
        else
            WinActivate %temptitle%
    }
else
  {
    WinGetActiveTitle, temptitle
    WinShow ahk_class Console_2_Main
    WinActivate ahk_class Console_2_Main
  }
}
else{
WinGetActiveTitle, temptitle
Run Console.exe
}
DetectHiddenWindows, off
return
Run Code Online (Sandbox Code Playgroud)

结果

我只是按win+| 我有运行powershell的mi透明控制台。如果我再次按下它就会消失,:)


Max*_*mus 6

Quake/波浪线模式在 ConEmu build 120612 中实现。我是这个控制台模拟器的作者。

您几乎可以在 Settings/Keys 中选择任何热键(可以通过RegisterHotKey 注册)。

在控制台区域周围设置垫(以像素为单位)。

可以使用鼠标调整窗口大小,而框架完全隐藏(只需将鼠标光标悬停在框架必须存在的位置,框架就会出现)。或从键盘(看设置/键)。

distrib 中提供的示例设置 - “ConEmu\ConEmu_Tilde.xml”,只需将此文件重命名为“ConEmu.xml”。