A simple, open-source macOS menu bar application for effortlessly running Python scripts with an extra of motivation.
-
Clone Repository on XCode
-
On PythonControler.swift update Script's path
sys.path.append("{/Users/...}/python-automation/python-automation/Scripts")
-
Build the app and locate apps's folder
-
Drag app to Application folder
-
Place your Python scripts in the designated ./Scripts directory on the projects repository.
-
Create a new Button and reorganize to your needs.
Button(action: {}){ VStack(spacing: 12) { AutomationButton(icon: "arrow.clockwise.square", title: "organize", subtitle: "/Downloads", custom: false) .onTapGesture { let _ = PythonController().self.runSortDownloads(script: "DownloadsSorter") } } .frame(width: 111, height: 30) .padding(12) .background { RoundedRectangle(cornerRadius: 12, style: .continuous) .fill(.ultraThinMaterial) } } .buttonStyle(.plain)