13 lines
404 B
Python
13 lines
404 B
Python
# ztools Addon Initialization
|
|
# This file runs at FreeCAD startup (before GUI)
|
|
|
|
import FreeCAD as App
|
|
|
|
# The Catppuccin Mocha theme is now provided as a Preference Pack.
|
|
# It will be automatically available in:
|
|
# Edit > Preferences > General > Preference packs > CatppuccinMocha
|
|
#
|
|
# No manual installation is required - FreeCAD's addon system handles it.
|
|
|
|
App.Console.PrintLog("ztools addon loaded\n")
|