차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
tech:quicklook [2015/02/17 16:08] V_Ltech:quicklook [2016/07/12 00:56] (현재) – 바깥 편집 127.0.0.1
줄 1: 줄 1:
 +{{tag>quicklook}}
  
 ====== Quicklook ====== ====== Quicklook ======
줄 5: 줄 6:
   * /Macintosh HD/Library/QuickLook/   * /Macintosh HD/Library/QuickLook/
   * /username/Library/QuickLook/ (if present)   * /username/Library/QuickLook/ (if present)
 +
 +플러그인을 QuickLook 폴더에 넣어두는 것만으로도 곧바로 플러그인이 활성화되나, 플러그인 인식이 늦어지는 경우 아래 명령어를 터미널에 입력해 시스템 내 플러그인 설치 목록을 강제로 갱신할 수 있다.
 +    qlmanage -r
 +
 +훑어보기(QuickLook)는 파일을 응용 프로그램에서 열어보기 전에, '미리 보기'하는 개념이기 때문에 기본 상태에서는 창 안에 표시되는 '내용(텍스트)'을 선택하거나 복사할 수 없다. 하지만 터미널에서 다음 명령어를 입력하면 훑어보기 창 내에서 텍스트를 직접 선택하고 복사할 수 있다.
 +
 +      defaults write com.apple.finder QLEnableTextSelection -bool TRUE;killall Finder
 +기본 상태로 복원하는 명령어
 +        defaults delete com.apple.finder QLEnableTextSelection;killall Finder
 +
 + 아래 터미널 명령어를 사용해 '퀵'룩을 더 '퀵'하게 만들 수 있다.  터미널에 입력하면 파일을 선택하고 space 키를 눌렀을 때   창이 화면에 바로 나타난다.
 +
 +      defaults write -g QLPanelAnimationDuration -float 0;killall Finder
 +다시 OS X 기본 상태로 복구하는 명령어는 다음과 같다.
 +
 +    defaults delete -g QLPanelAnimationDuration;killall Finder
 +
 +
  
 By default, only the first directory listed above should have any plug-ins in it. The other directories should contain third-party plug-ins supplied by developers to support their applications. Apple's included plug-ins are the following: By default, only the first directory listed above should have any plug-ins in it. The other directories should contain third-party plug-ins supplied by developers to support their applications. Apple's included plug-ins are the following:
줄 21: 줄 40:
   * Text.qlgenerator -- Plain and rich text documents   * Text.qlgenerator -- Plain and rich text documents
   * Web.qlgenerator -- HTML documents   * Web.qlgenerator -- HTML documents
- 
  
 http://www.quicklookplugins.com/ http://www.quicklookplugins.com/
  
-http://www.qlplugins.com/+====qlImageSize==== 
 +이미지의 확장자와 (픽셀) 크기, 그리고 용량을 바로 확인할 수 있는 기능을 제공한다 
 +https://github.com/Nyx0uf/qlImageSize
  
-http://www.mactricksandtips.com/2008/02/ultimate-list-of-quicklook-plugins.html+http://repo.whine.fr/qlImageSize.pkg
  
  
-{{tag>quicklook}}