Mac OS X 中 TotalFinder 的 Visor 功能有替代品吗?

Mac OS X 中 TotalFinder 的 Visor 功能有替代品吗?

有没有其他选择总搜索器的 Visor 功能?Visor 功能是一个键盘快捷键,即使在全屏应用程序中,也可以在屏幕顶部打开“Finder”窗口。

我不想使用 TotalFinder 的全部功能,因为我更喜欢默认的 Mac OS X“Finder”,但我希望它有一个键盘快捷键,可以在全屏应用程序上方显示查找器窗口。

答案1

和您一样,我也在寻找 TotalFinder 的替代品,因为System Integrity Protection从 Mojave 开始,TotalFinder 现在需要永久禁用。

由于我没有找到任何好的替代方案,我最终开发了一个小应用程序,只做 Visor 所做的事情。

结果如下:

FastFinder 演示

它并不完美,因为它是用 AppleScript API 完成的,但它完成了工作。

您可以从我的 GitHub 项目这里下载:快速查找器。它是开源的,非常欢迎贡献 :)

答案2

我用键盘大师带有触发器:⌥`

Show/Hide Finder
Triggered by any of the following:
The Hot Key ⌥` is pressed
Will execute the following actions:
Activate Finder
If already at the front, hide the application.

它没有那种将“Finder”向上滑动的精美动画,但它完成了工作。

答案3

我目前正在使用 Alfred热键触发的工作流程每当我按下:⌥` 时,就会调出 Path Finder(另一个 Finder 替代方案)

它可以很好地将应用程序置于焦点,甚至在需要时启动它,但与 TotalFinder 的 Visor 功能不同,Path Finder 不会弹出“任何桌面”(如果需要,OS X 会将您滑回到应用程序打开的桌面)。我猜想这将是 Keyboard Maestro 的相同功能。

答案4

我使用以下简单的 AppleScript 来“模拟”普通 Finder 窗口的遮阳板行为。

if visible of application "Finder" is false then
    activate application "Finder"
else
    tell application "Finder"
        set visible to false
    end tell
end if

然后,您可以将此代码链接到某个热键(例如使用 Keyboard Maestro)。确保 Finder 窗口未链接到任何特定桌面/空间,即为窗口设置“所有空间”选项。这应确保在任何桌面/空间上都会弹出相同的 Finder 窗口。

相关内容