Closed bplace closed 1 year ago
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 : https://github.com/whomwah/qlstephen/issues/23
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 : https://github.com/whomwah/qlstephen/issues/23