{"id":4887,"date":"2018-09-25T16:06:05","date_gmt":"2018-09-25T11:06:05","guid":{"rendered":"https:\/\/ahmadawais.com\/?p=4887"},"modified":"2021-01-25T20:17:07","modified_gmt":"2021-01-25T15:17:07","slug":"fix-macos-mojave-font-rendering-issue","status":"publish","type":"post","link":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/","title":{"rendered":"Fix macOS Mojave Font Rendering Issue | <br \/>Big Sur Update"},"content":{"rendered":"<p>Just updated to macOS Mojave only to find out that there is a terrible font rendering issue for almost all the ElectronJS based apps like <a href=\"https:\/\/VSCode.pro\/\">VSCode<\/a> my code editor of choice.<\/p>\n<p>After researching a little bit, messing around with system defaults, less to my surprise, I found out that Apple has disabled Subpixel antialiasing for text in macOS Mojave. It&#8217;s gone.<\/p>\n<p>Little more research led to a fix, all you have to do is open up your <code>Terminal<\/code> application (<kbd>COMMAND (\u2318)<\/kbd> + <kbd>SPACE<\/kbd> then search for <code>Terminal<\/code>) and run the following command.<\/p>\n<p style=\"background: #4c41c912; padding: 3rem; background-color: #ffd54f42; border-radius: 3px; margin: 3rem 0; box-shadow: 4px 6.9px 16px rgba(0,0,0,.15)!important; transition: all .4s ease-in;\"><img decoding=\"async\" class=\"emoji\" draggable=\"false\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/1f525.svg\" alt=\"\ud83d\udd25\" \/> I&#8217;ve just launched a course called <a href=\"https:\/\/VSCode.pro\/\">VSCode Power User \u2192<\/a><br \/>\n<em><strong>This is easily my best work ever<\/strong><\/em>. Check out why I worked ridiculously hard for 1.5 years and a 1,000+ hours building, recording, sharing 200+ dev tips in this <a href=\"https:\/\/VSCode.pro\/\">VSCode.pro course!<\/a><\/p>\n<p><code>defaults write -g CGFontRenderingFontSmoothingDisabled -bool FALSE<\/code><\/p>\n<\/section>\n<div class=\"postcontents full\">\n<p><a href=\"https:\/\/AhmadAwais.com\/\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4888\" src=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix.jpg\" alt=\"5 Macos Mojave Font Rendering Issue Fix\" width=\"2214\" height=\"426\" srcset=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix.jpg 2214w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix-300x58.jpg 300w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix-768x148.jpg 768w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix-1024x197.jpg 1024w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix-1680x323.jpg 1680w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix-860x165.jpg 860w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix-680x131.jpg 680w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix-400x77.jpg 400w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix-50x10.jpg 50w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix-600x115.jpg 600w\" sizes=\"auto, (max-width: 2214px) 100vw, 2214px\" \/><\/a><\/div>\n<section class=\"postcontents wrapper\">\n<p>\u26a0\ufe0f Using FALSE\/NO is the same since it&#8217;s a boolean data type.<br \/>\n\ud83d\udc68\u200d\ud83d\udcbb I&#8217;m teaching thousands of devs how to become <a href=\"https:\/\/VSCode.pro\/\" target=\"_blank\" rel=\"noopener\">VSCode Power Users<\/a> \u2192<br \/>\n\u2705 This site is super fast?! <a href=\"https:\/\/kinsta.com\/?kaid=WMDAKYHJLNJX&amp;utm_source=TheDevCouple&amp;utm_medium=Partner\">It&#8217;s hosted with Kinsta on Google servers \u2192<\/a><\/p>\n<p>This will lead to the font smoothing to be enabled \u2014 especially for non-retina external monitors. You&#8217;ll thank me later. <strong>You need to sign out and sign back in or restart your Mac before you can see your changes after running this command<\/strong>. That&#8217;s pretty much all.<\/p>\n<\/section>\n<div class=\"postcontents full dark\">\n<div class=\"wrapper\">\n<h2 style=\"text-align: center;\" style=\"text-align: center;\" id=\"%f0%9f%a7%90\">\ud83e\uddd0<a href=\"#%f0%9f%a7%90\" class=\"heading-link\">#<\/a><\/h2>\n<h2 style=\"text-align: center;\" style=\"text-align: center;\" id=\"explanation-whats-happening-in-there\">Explanation: What&#8217;s Happening In there?!<a href=\"#explanation-whats-happening-in-there\" class=\"heading-link\">#<\/a><\/h2>\n<\/div>\n<\/div>\n<section class=\"postcontents wrapper\">\n<p>Some folks in the comments asked about how I stumbled upon this fix, so for the sake of technical know-how, I am updating this post with more details.<\/p>\n<p>\ud83c\udfaf Apple&#8217;s macOS normally has a set of <code>defaults<\/code> that you can change programmatically. I have such an opinionated workflow for whenever I install my OS from scratch. That&#8217;s a story for another day.<\/p>\n<p>\ud83e\udd16 I remember in the past, with High Sierra, I had to enable subpixel font rendering on non-Apple LCDs. That was the <code>AppleFontSmoothing<\/code> option which I set to true, or one could directly add <code>-int 1<\/code> for that option.<\/p>\n<p>\ud83e\udd14 I was unable to find that setting in macOS Mojave <code>defaults<\/code>. I kept looking in there. Especially in the <code>Apple Global Domain<\/code> settings, since that&#8217;s where the old setting was.<\/p>\n<p>\ud83d\ude43 Aha! I found a new setting in there, it&#8217;s called <code>CGFontRenderingFontSmoothingDisabled<\/code> \u2014 it&#8217;s quite evident what this setting does. Disables the rendering of smooth fonts. It was set to <code>1<\/code> which means it was set to <code>TRUE<\/code> or <code>YES<\/code>.<\/p>\n<\/section>\n<div class=\"postcontents full\"><a href=\"https:\/\/AhmadAwais.com\/\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4905\" src=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-CGFontRenderingFontSmoothingDisabled-1.png\" alt=\"Macos Mojave Cgfontrenderingfontsmoothingdisabled 1\" width=\"1701\" height=\"283\" srcset=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-CGFontRenderingFontSmoothingDisabled-1.png 1701w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-CGFontRenderingFontSmoothingDisabled-1-300x50.png 300w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-CGFontRenderingFontSmoothingDisabled-1-768x128.png 768w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-CGFontRenderingFontSmoothingDisabled-1-1024x170.png 1024w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-CGFontRenderingFontSmoothingDisabled-1-1680x280.png 1680w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-CGFontRenderingFontSmoothingDisabled-1-860x143.png 860w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-CGFontRenderingFontSmoothingDisabled-1-680x113.png 680w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-CGFontRenderingFontSmoothingDisabled-1-400x67.png 400w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-CGFontRenderingFontSmoothingDisabled-1-50x8.png 50w\" sizes=\"auto, (max-width: 1701px) 100vw, 1701px\" \/><\/a><\/div>\n<section class=\"postcontents wrapper\">\n<p>So, all I had to do to try my luck was to disable this font smoothing disabler, i.e. enable to font smoothing on non-Apple\/non-retina LEDs. For that I wrote this following command:<\/p>\n<p><code>defaults write -g CGFontRenderingFontSmoothingDisabled -bool FALSE<\/code><\/p>\n<ul>\n<li><strong>defaults<\/strong> \u2014 access the Mac OS X user defaults system<\/li>\n<li><strong>\u2212g<\/strong> | <strong>\u2212globalDomain<\/strong> | <strong>NSGlobalDomain<\/strong> \u2014 Specifies the global domain. \u2019-g\u2019 and \u2019-globalDomain\u2019 may be used as synonyms for NSGlobalDomain<\/li>\n<li><strong>CGFontRenderingFontSmoothingDisabled <\/strong>\u2014 the setting which I wanted to disable to enable the font smoothing<\/li>\n<li><strong>\u2212bool<\/strong> [ean] \u2014 Allows the user to specify a boolean as the value for the given preference key. The value must be <code>TRUE\/YES<\/code> or <code>FALSE\/NO<\/code><\/li>\n<\/ul>\n<p>I ran this command, checked if it worked, by logging out and in, and boy it did. Super happy. I wish Apple fixes this instead of disabling this option altogether in the near future updates.<\/p>\n<\/section>\n<div class=\"postcontents full\"><a href=\"https:\/\/AhmadAwais.com\/\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4906\" src=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-font-fix-CGFontRenderingFontSmoothingDisabled.png\" alt=\"Macos Font Fix Cgfontrenderingfontsmoothingdisabled\" width=\"1743\" height=\"332\" srcset=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-font-fix-CGFontRenderingFontSmoothingDisabled.png 1743w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-font-fix-CGFontRenderingFontSmoothingDisabled-300x57.png 300w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-font-fix-CGFontRenderingFontSmoothingDisabled-768x146.png 768w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-font-fix-CGFontRenderingFontSmoothingDisabled-1024x195.png 1024w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-font-fix-CGFontRenderingFontSmoothingDisabled-1680x320.png 1680w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-font-fix-CGFontRenderingFontSmoothingDisabled-860x164.png 860w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-font-fix-CGFontRenderingFontSmoothingDisabled-680x130.png 680w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-font-fix-CGFontRenderingFontSmoothingDisabled-400x76.png 400w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-font-fix-CGFontRenderingFontSmoothingDisabled-50x10.png 50w\" sizes=\"auto, (max-width: 1743px) 100vw, 1743px\" \/><\/a><\/div>\n<section class=\"postcontents wrapper\">\n<p>\ud83c\udf89 Since I am a big fan of <a href=\"https:\/\/VSCode.pro\/\">VSCode<\/a> I did a before\/after <code>--diff<\/code> of the defaults and it seems the setting is now set to <code>0<\/code> and it works so hurrah!<\/p>\n<\/section>\n<div class=\"postcontents full\"><a href=\"https:\/\/AhmadAwais.com\/\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4907\" src=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-defaults-changed-font-fixed.png\" alt=\"Macos Mojave Defaults Changed Font Fixed\" width=\"2422\" height=\"96\" srcset=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-defaults-changed-font-fixed.png 2422w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-defaults-changed-font-fixed-300x12.png 300w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-defaults-changed-font-fixed-768x30.png 768w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-defaults-changed-font-fixed-1024x41.png 1024w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-defaults-changed-font-fixed-1680x67.png 1680w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-defaults-changed-font-fixed-860x34.png 860w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-defaults-changed-font-fixed-680x27.png 680w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-defaults-changed-font-fixed-400x16.png 400w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/macos-mojave-defaults-changed-font-fixed-50x2.png 50w\" sizes=\"auto, (max-width: 2422px) 100vw, 2422px\" \/><\/a><\/div>\n<section class=\"postcontents wrapper\">\n<p>\u26a0\ufe0f Some folks also recommended enabling the font smoothing option in the <code>General<\/code> font settings but that didn&#8217;t work for me. It was already enabled and did nothing to improve the situation.<\/p>\n<p><a href=\"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4901\" src=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/font-blur-issue-macos-Mojave.png\" alt=\"Font Blur Issue Macos Mojave\" width=\"1000\" height=\"1013\" srcset=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/font-blur-issue-macos-Mojave.png 1000w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/font-blur-issue-macos-Mojave-296x300.png 296w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/font-blur-issue-macos-Mojave-768x778.png 768w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/font-blur-issue-macos-Mojave-860x871.png 860w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/font-blur-issue-macos-Mojave-680x689.png 680w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/font-blur-issue-macos-Mojave-400x405.png 400w, https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/font-blur-issue-macos-Mojave-50x51.png 50w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/a><\/p>\n<p style=\"text-align: center;\">Peace! \u270c\ufe0f<\/p>\n<p>Having the same issue after you upgraded to macOS BigSur? Well try this:<\/p>\n<p>The macOS Big Sur seems to have removed the font smoothing setting, but you might use a terminal command (reboot required (maybe?!)):<\/p>\n<pre class=\"lang:bash\">defaults -currentHost write -g AppleFontSmoothing -int 0<\/pre>\n<blockquote><p><em>JUST A NOTE!<\/em><br \/>\n\ud83d\udc68\u200d\ud83d\udcbb I&#8217;m teaching thousands of devs how to become <a href=\"https:\/\/VSCode.pro\/\" target=\"_blank\" rel=\"noopener\">VSCode Power Users<\/a> \u2192<br \/>\n\u2705 This site is super fast?! <a href=\"https:\/\/kinsta.com\/?kaid=WMDAKYHJLNJX&amp;utm_source=TheDevCouple&amp;utm_medium=Partner\">It&#8217;s hosted with Kinsta on Google servers \u2192<\/a><\/p><\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>Just updated to macOS Mojave only to find out that there is a terrible font rendering issue for almost all the ElectronJS based apps like VSCode my code editor of choice. After researching a little bit, messing around with system defaults, less to my surprise, I found out that Apple has disabled Subpixel antialiasing for text in macOS Mojave. It&#8217;s gone. Little more research led to a fix, all you have to do is open up your Terminal application (COMMAND (\u2318) + SPACE then search for Terminal) and run the following command. I&#8217;ve just launched a course called VSCode Power [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":4888,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"webmentions_disabled_pings":false,"webmentions_disabled":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[221],"tags":[222,225,223,224],"class_list":["post-4887","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mac","tag-mac","tag-mac-font-rendering-issue","tag-macos","tag-macos-mojave"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Fix macOS Mojave Font Rendering Issue | Big Sur Update<\/title>\n<meta name=\"description\" content=\"Just updated to macOS Mojave only to find out that there is a terrible font rendering issue for almost all the ElectronJS based apps like VSCode my code\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fix macOS Mojave Font Rendering Issue | Big Sur Update\" \/>\n<meta property=\"og:description\" content=\"Just updated to macOS Mojave only to find out that there is a terrible font rendering issue for almost all the ElectronJS based apps like VSCode my code\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/\" \/>\n<meta property=\"og:site_name\" content=\"Ahmad Awais\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/AhmadAwais\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/AhmadAwais\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-25T11:06:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-25T15:17:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2214\" \/>\n\t<meta property=\"og:image:height\" content=\"426\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ahmad Awais\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@MrAhmadAwais\" \/>\n<meta name=\"twitter:site\" content=\"@MrAhmadAwais\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ahmad Awais\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/\"},\"author\":{\"name\":\"Ahmad Awais\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#\\\/schema\\\/person\\\/1d1b9504182dca2315cf039fb4ebb85b\"},\"headline\":\"Fix macOS Mojave Font Rendering Issue | Big Sur Update\",\"datePublished\":\"2018-09-25T11:06:05+00:00\",\"dateModified\":\"2021-01-25T15:17:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/\"},\"wordCount\":672,\"commentCount\":130,\"publisher\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#\\\/schema\\\/person\\\/1d1b9504182dca2315cf039fb4ebb85b\"},\"image\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ahmadawais.com\\\/wp-content\\\/uploads\\\/2018\\\/09\\\/5-macos-mojave-font-rendering-issue-fix.jpg\",\"keywords\":[\"mac\",\"Mac Font Rendering Issue\",\"macOS\",\"macOS Mojave\"],\"articleSection\":[\"Mac\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/\",\"url\":\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/\",\"name\":\"Fix macOS Mojave Font Rendering Issue | Big Sur Update\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ahmadawais.com\\\/wp-content\\\/uploads\\\/2018\\\/09\\\/5-macos-mojave-font-rendering-issue-fix.jpg\",\"datePublished\":\"2018-09-25T11:06:05+00:00\",\"dateModified\":\"2021-01-25T15:17:07+00:00\",\"description\":\"Just updated to macOS Mojave only to find out that there is a terrible font rendering issue for almost all the ElectronJS based apps like VSCode my code\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/#primaryimage\",\"url\":\"https:\\\/\\\/ahmadawais.com\\\/wp-content\\\/uploads\\\/2018\\\/09\\\/5-macos-mojave-font-rendering-issue-fix.jpg\",\"contentUrl\":\"https:\\\/\\\/ahmadawais.com\\\/wp-content\\\/uploads\\\/2018\\\/09\\\/5-macos-mojave-font-rendering-issue-fix.jpg\",\"width\":2214,\"height\":426,\"caption\":\"5 Macos Mojave Font Rendering Issue Fix\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/fix-macos-mojave-font-rendering-issue\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ahmadawais.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fix macOS Mojave Font Rendering Issue | Big Sur Update\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#website\",\"url\":\"https:\\\/\\\/ahmadawais.com\\\/\",\"name\":\"Ahmad Awais\",\"description\":\"Founder &amp; CEO of CommandCode.ai f\\\/k\\\/a Langbase | Google Developers Advisory Board (gDAB) founding member\",\"publisher\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#\\\/schema\\\/person\\\/1d1b9504182dca2315cf039fb4ebb85b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ahmadawais.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/#\\\/schema\\\/person\\\/1d1b9504182dca2315cf039fb4ebb85b\",\"name\":\"Ahmad Awais\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Ahmad-Awais-face.jpg\",\"url\":\"https:\\\/\\\/ahmadawais.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Ahmad-Awais-face.jpg\",\"contentUrl\":\"https:\\\/\\\/ahmadawais.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Ahmad-Awais-face.jpg\",\"width\":2299,\"height\":1705,\"caption\":\"Ahmad Awais\"},\"logo\":{\"@id\":\"https:\\\/\\\/ahmadawais.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Ahmad-Awais-face.jpg\"},\"description\":\"Founder & CEO of \u2318 Command Code coding agent with taste. Founded Langbase.com, AI cloud to build, deploy, and scale AI agents with tools & memory \u00b7 Creator of Command.new. \\\"Awais is an awesome example for developers\\\" \u2014 Satya Nadella, CEO of Microsoft. NASA Mars Ingenuity Helicopter mission code contributor 8th GitHub Stars Award recipient with 5x GitHub Stars Award (Listed as GitHub's #1 JavaScript trending developer). Google Developers Expert Web DevRel. Ex VP Eng (DevTools & DevRel) Rapid \u00b7 Google Developers Advisory Board (gDAB) founding member \u00b7 AI\\\/ML\\\/DevTools Angel Investor (Replit, Resend, Daytona, Gumroad and you?) \u276f AI\\\/ML Advisory Board San Francisco, DevNetwork. Award-winning Open Source Engineering leader authored hundreds of open-source dev-tools and software libraries used by millions of developers, including Shades of Purple code theme and corona-cli. Linux Foundation (Node.js Committee Lead), OpenAPI Business Governing Board. Taught 108K+ developers via NodeCLI.com and VSCode.pro course. 274 million views, blogging for 24 yrs. \u276f Read more about Ahmad Awais or come say hi on \ud835\udd4f @MrAhmadAwais.\",\"sameAs\":[\"https:\\\/\\\/AhmadAwais.com\\\/\",\"https:\\\/\\\/facebook.com\\\/AhmadAwais\",\"https:\\\/\\\/instagram.com\\\/MrAhmadAwais\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/MrAhmadAwais\\\/\",\"https:\\\/\\\/x.com\\\/MrAhmadAwais\",\"https:\\\/\\\/youtube.com\\\/AhmadAwais\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fix macOS Mojave Font Rendering Issue | Big Sur Update","description":"Just updated to macOS Mojave only to find out that there is a terrible font rendering issue for almost all the ElectronJS based apps like VSCode my code","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/","og_locale":"en_US","og_type":"article","og_title":"Fix macOS Mojave Font Rendering Issue | Big Sur Update","og_description":"Just updated to macOS Mojave only to find out that there is a terrible font rendering issue for almost all the ElectronJS based apps like VSCode my code","og_url":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/","og_site_name":"Ahmad Awais","article_publisher":"https:\/\/facebook.com\/AhmadAwais","article_author":"https:\/\/facebook.com\/AhmadAwais","article_published_time":"2018-09-25T11:06:05+00:00","article_modified_time":"2021-01-25T15:17:07+00:00","og_image":[{"width":2214,"height":426,"url":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix.jpg","type":"image\/jpeg"}],"author":"Ahmad Awais","twitter_card":"summary_large_image","twitter_creator":"@MrAhmadAwais","twitter_site":"@MrAhmadAwais","twitter_misc":{"Written by":"Ahmad Awais","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/#article","isPartOf":{"@id":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/"},"author":{"name":"Ahmad Awais","@id":"https:\/\/ahmadawais.com\/#\/schema\/person\/1d1b9504182dca2315cf039fb4ebb85b"},"headline":"Fix macOS Mojave Font Rendering Issue | Big Sur Update","datePublished":"2018-09-25T11:06:05+00:00","dateModified":"2021-01-25T15:17:07+00:00","mainEntityOfPage":{"@id":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/"},"wordCount":672,"commentCount":130,"publisher":{"@id":"https:\/\/ahmadawais.com\/#\/schema\/person\/1d1b9504182dca2315cf039fb4ebb85b"},"image":{"@id":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/#primaryimage"},"thumbnailUrl":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix.jpg","keywords":["mac","Mac Font Rendering Issue","macOS","macOS Mojave"],"articleSection":["Mac"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/","url":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/","name":"Fix macOS Mojave Font Rendering Issue | Big Sur Update","isPartOf":{"@id":"https:\/\/ahmadawais.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/#primaryimage"},"image":{"@id":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/#primaryimage"},"thumbnailUrl":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix.jpg","datePublished":"2018-09-25T11:06:05+00:00","dateModified":"2021-01-25T15:17:07+00:00","description":"Just updated to macOS Mojave only to find out that there is a terrible font rendering issue for almost all the ElectronJS based apps like VSCode my code","breadcrumb":{"@id":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/#primaryimage","url":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix.jpg","contentUrl":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix.jpg","width":2214,"height":426,"caption":"5 Macos Mojave Font Rendering Issue Fix"},{"@type":"BreadcrumbList","@id":"https:\/\/ahmadawais.com\/fix-macos-mojave-font-rendering-issue\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ahmadawais.com\/"},{"@type":"ListItem","position":2,"name":"Fix macOS Mojave Font Rendering Issue | Big Sur Update"}]},{"@type":"WebSite","@id":"https:\/\/ahmadawais.com\/#website","url":"https:\/\/ahmadawais.com\/","name":"Ahmad Awais","description":"Founder &amp; CEO of CommandCode.ai f\/k\/a Langbase | Google Developers Advisory Board (gDAB) founding member","publisher":{"@id":"https:\/\/ahmadawais.com\/#\/schema\/person\/1d1b9504182dca2315cf039fb4ebb85b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ahmadawais.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/ahmadawais.com\/#\/schema\/person\/1d1b9504182dca2315cf039fb4ebb85b","name":"Ahmad Awais","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2020\/06\/Ahmad-Awais-face.jpg","url":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2020\/06\/Ahmad-Awais-face.jpg","contentUrl":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2020\/06\/Ahmad-Awais-face.jpg","width":2299,"height":1705,"caption":"Ahmad Awais"},"logo":{"@id":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2020\/06\/Ahmad-Awais-face.jpg"},"description":"Founder & CEO of \u2318 Command Code coding agent with taste. Founded Langbase.com, AI cloud to build, deploy, and scale AI agents with tools & memory \u00b7 Creator of Command.new. \"Awais is an awesome example for developers\" \u2014 Satya Nadella, CEO of Microsoft. NASA Mars Ingenuity Helicopter mission code contributor 8th GitHub Stars Award recipient with 5x GitHub Stars Award (Listed as GitHub's #1 JavaScript trending developer). Google Developers Expert Web DevRel. Ex VP Eng (DevTools & DevRel) Rapid \u00b7 Google Developers Advisory Board (gDAB) founding member \u00b7 AI\/ML\/DevTools Angel Investor (Replit, Resend, Daytona, Gumroad and you?) \u276f AI\/ML Advisory Board San Francisco, DevNetwork. Award-winning Open Source Engineering leader authored hundreds of open-source dev-tools and software libraries used by millions of developers, including Shades of Purple code theme and corona-cli. Linux Foundation (Node.js Committee Lead), OpenAPI Business Governing Board. Taught 108K+ developers via NodeCLI.com and VSCode.pro course. 274 million views, blogging for 24 yrs. \u276f Read more about Ahmad Awais or come say hi on \ud835\udd4f @MrAhmadAwais.","sameAs":["https:\/\/AhmadAwais.com\/","https:\/\/facebook.com\/AhmadAwais","https:\/\/instagram.com\/MrAhmadAwais\/","https:\/\/www.linkedin.com\/in\/MrAhmadAwais\/","https:\/\/x.com\/MrAhmadAwais","https:\/\/youtube.com\/AhmadAwais"]}]}},"jetpack_featured_media_url":"https:\/\/ahmadawais.com\/wp-content\/uploads\/2018\/09\/5-macos-mojave-font-rendering-issue-fix.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/posts\/4887","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/comments?post=4887"}],"version-history":[{"count":5,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/posts\/4887\/revisions"}],"predecessor-version":[{"id":7393,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/posts\/4887\/revisions\/7393"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/media\/4888"}],"wp:attachment":[{"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/media?parent=4887"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/categories?post=4887"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ahmadawais.com\/api\/wp\/v2\/tags?post=4887"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}