We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have switched to Apple Silicon with Ventura recently, here's my solution to have OKish preview on NFO files :
mdls -name kMDItemContentType file.nfo
kMDItemContentType = "com.byteproject.ascension.nfo"
~/Library/QuickLook/QLStephen.qlgenerator/Contents/Info.plist
LSItemContentTypes
<key>LSItemContentTypes</key> <array> <string>public.data</string> <string>public.content</string> <string>com.byteproject.ascension.nfo</string> </array>
qlmanage -r
qlmanage -r cache
Source : whomwah/qlstephen#23
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Have switched to Apple Silicon with Ventura recently, here's my solution to have OKish preview on NFO files :
mdls -name kMDItemContentType file.nfo
using a NFO of your choicekMDItemContentType = "com.byteproject.ascension.nfo"
as result, you may get something else~/Library/QuickLook/QLStephen.qlgenerator/Contents/Info.plist
with the editor of your choiceLSItemContentTypes
, you'll find en array with content types, I added the content type for NFO on my setup :qlmanage -r
andqlmanage -r cache
Source : whomwah/qlstephen#23
The text was updated successfully, but these errors were encountered: