Windows的类似Quake / Doom的命令提示符[关闭]


15

我在一个类似Doom的命令提示符后,可以按键盘快捷键,如CTRL Tab,命令提示符将从顶部向下滚动,如Doom,Quake等。

同样,如果它与Powershell一起使用,那就更好了。


当您说“并且命令提示符将从顶部向下滚动”时,是否表示您要启动DOS窗口?
goblinbox

...确切地说,将出现一个DOS窗口。我当时想拥有它会很棒,只是在需要时滚动到视图中,否则就消失。
欧尼娅

+1,对于OS X上的Terminal来说有类似的东西,但对于Windows我还没有看到。
phoebus 2010年

1
哦,像老式FPS控制台控件一样,Windows的命令提示符将是AWESOME。

Answers:


13

参见http ://poshconsole.codeplex.com-乔尔实现了一种“地震模式”,其工作原理与您所说的完全相同。


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

结果

我只要按win + | 我有mi透明控制台运行powershell。如果我再按一次,它消失了,:)


希望他们在console2中包含此功能
Adonis K. Kakoulidis

6

在ConEmu 版本120612中实现了Quake / tilde模式。我是这个控制台模拟器的作者。

您几乎可以在“设置/键”中选择任何热键(可以通过RegisterHotKey进行注册)。

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

在框架完全隐藏的情况下,可以用鼠标调整窗口的大小(只需将鼠标光标停在框架必须位于的位置,框架就会出现)。或通过键盘(查看“设置/键”)。

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

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.