1. 程式人生 > >Alfred神奇的破解安裝,適用於10.13.X以上版本

Alfred神奇的破解安裝,適用於10.13.X以上版本

神器安裝,我也只是知識的搬運工!

1.開啟Alfred-3.6.1.dmg

2.雙擊Alfred 3安裝

3.開啟CORE Keygen

4.點選“Patch”在應用程式中找到Alfred 3點選開啟

5.點選“save”顯示提示為License information saved successfully則安裝成功

支援ITerm2的指令碼

on alfred_script(q)

if application "iTerm2" is running or application "iTerm" is running then

run script "

on run {q}

tell application \":Applications:iTerm.app\"

activate

try

select first window

set onlywindow to false

on error

create window with default profile

select first window

set onlywindow to true

end try

tell current session of the first window

if onlywindow is false then

tell split vertically with default profile

write text q

end tell

end if

end tell

end tell

end run

" with parameters {q}

else

run script "

on run {q}

tell application \":Applications:iTerm.app\"

activate

try

select first window

on error

create window with default profile

select first window

end try

tell the first window

tell current session to write text q

end tell

end tell

end run

" with parameters {q}

end if

end alfred_script