-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Advanced configurations
Paddy Xu edited this page Feb 13, 2022
·
15 revisions
- Quit QuickLook if it is running.
- Navigate to the data location.
- Open
QuickLook.configwith a text editor. If this file does not exist then run and quit QuickLook once.- If the file contains only one line, copy and paste the following to overwrite the content:
<?xml version="1.0" encoding="utf-8"?> <Settings> </Settings>
- If the file contains only one line, copy and paste the following to overwrite the content:
- Add your desired config and save the file.
- The final config should look like this (
ShowTrayIconandUseTransparencyare just for example):<?xml version="1.0" encoding="utf-8"?> <Settings> <ShowTrayIcon>True</ShowTrayIcon> <UseTransparency>True</UseTransparency> </Settings>
- The final config should look like this (
- Run QuickLook again.
Default is True (show the icon).
- To hide the icon, write:
<ShowTrayIcon>False</ShowTrayIcon>. - To show the icon, write:
<ShowTrayIcon>True</ShowTrayIcon>or delete the existing line.
Default is True (enable transparency).
- To disable transparency, write:
<UseTransparency>False</UseTransparency>. - To enable transparency, write:
<UseTransparency>True</UseTransparency>or delete the existing line.
Default is False (disable color profile conversion).
Open QuickLook.Plugin.ImageViewer.config with a text editor.
- To disable conversion, write:
<UseColorProfile>False</UseColorProfile>or delete the existing line. - To enable conversion, write:
<UseColorProfile>True</UseColorProfile>.