Skip to content

Instantly share code, notes, and snippets.

@mekkablue
Created July 27, 2019 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mekkablue/37e5ecbacdd81edc1355e47690bdbbc8 to your computer and use it in GitHub Desktop.
Save mekkablue/37e5ecbacdd81edc1355e47690bdbbc8 to your computer and use it in GitHub Desktop.
Glyphs App Helper Scripts
#MenuTitle: Fix Stuck Macro Window
# -*- coding: utf-8 -*-
__doc__="""
If you cannot resize your Macro window anymore, run this script.
"""
import os
terminalCommand = 'defaults delete com.GeorgSeifert.Glyphs2 "NSWindow Frame MacroPanel"'
os.system( terminalCommand )
#MenuTitle: Kill Background Processes
# -*- coding: utf-8 -*-
__doc__="""
Terminates all makeotfGlyphs processes. If your fan keeps screaming after exporting a font, or after cancelling a font export, then run this script and see if it helps.
"""
import os
terminalCommand = 'killall makeotfGlyphs'
terminalCommandResult = os.system( terminalCommand )
print "%s: %s" % ( terminalCommand, terminalCommandResult )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment