Command 키를 누른 상태에서 창을 활성화하기 위해 AutoRaise를 피하십시오.
업데이트: 이 개정안과 함께 풀 리퀘스트를 보낸 후
mouseStop=true
를 시도하라는 지시를 받았고 그런 종류의 작업을 수행했지만 완벽하지 않아 현재 기능과 수정안을 모두 사용하고 있습니다.요약
위의 수정으로 다음과 같이 Bartender의 숨겨진 메뉴 표시줄에서 아이콘을 선택할 수 있습니다.
이 해킹은 경우에 따라 경로에 다른 창이 있을 때 창에 더 쉽게 도달할 수 있도록 command 키를 누르는 동안 AutoRaise가 활성화되는 것을 방지합니다(창 사이의 거리가 충분히 가깝다면 이 해킹이 필요하지 않을 수 있습니다. 매개변수
mouseStop
).설치 스크립트를 통해 설치하는 방법
AutoRaise
에서 System Preference > Security & Privacy > Accessibility > Privacy
를 제거합니다.curl 'https://raw.githubusercontent.com/brisbanewebdeveloper/AutoRaise/77-make-it-work-with-bartender-custom/install-custom-version.sh' | sh
# OR
# curl 'https://raw.githubusercontent.com/brisbanewebdeveloper/AutoRaise/latest/install-custom-version.sh' | sh
수동 설치 방법
AutoRaise
에서 System Preference > Security & Privacy > Accessibility > Privacy
를 제거합니다.# Create the source directory
# ("myUser" is to be your own username)
mkdir -p /Users/myUser/src/brisbanewebdeveloper/AutoRaise
cd /Users/myUser/src/brisbanewebdeveloper/AutoRaise
# Download the custom version
git clone [email protected]:brisbanewebdeveloper/AutoRaise.git .
git checkout 77-make-it-work-with-bartender-custom
# OR
# git checkout latest
# Build the customised program
make clean && make CXXFLAGS=-DALTERNATIVE_TASK_SWITCHER
# Overwrite the one installed via Homebrew
# (Using "ditto" because "cp" command can get error)
chmod 555 AutoRaise
sudo ditto AutoRaise /opt/homebrew/opt/autoraise/bin/
# Remove the files downloaded
rm -fr /Users/myUser/src/brisbanewebdeveloper
# Restart with the custom program
brew services restart autoraise
제거 방법
프로그램을 다시 설치하십시오.
brew reinstall autoraise
참조
Reference
이 문제에 관하여(Command 키를 누른 상태에서 창을 활성화하기 위해 AutoRaise를 피하십시오.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/brisbanewebdeveloper/avoid-autoraise-to-activate-the-window-while-pressing-down-the-command-key-305h텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)