Skip to content

open-source mac menu bar app that allow you to clip python scripts

Notifications You must be signed in to change notification settings

angx1/automation-clipper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

A simple, open-source macOS menu bar application for effortlessly running Python scripts with an extra of motivation.

Screenshot 2024-10-13 at 19 28 50

Setting Up

  1. Clone Repository on XCode

  2. On PythonControler.swift update Script's path

    sys.path.append("{/Users/...}/python-automation/python-automation/Scripts")
    
  3. Build the app and locate apps's folder

  4. Drag app to Application folder

Configuration

  1. Place your Python scripts in the designated ./Scripts directory on the projects repository.

  2. 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)
    

About

open-source mac menu bar app that allow you to clip python scripts

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published