Metadata-Version: 2.1
Name: mac-app-env
Version: 2020.12.3
Summary: set macOS app environment variables (Info.plist LSEnvironment)
Home-page: https://github.com/andrewp-as-is/mac-app-env.py
License: Unlicense
Description: <!--
        https://readme42.com
        -->
        
        
        [![](https://img.shields.io/pypi/v/mac-app-env.svg?maxAge=3600)](https://pypi.org/project/mac-app-env/)
        [![](https://img.shields.io/badge/License-Unlicense-blue.svg?longCache=True)](https://unlicense.org/)
        
        ### Installation
        ```bash
        $ [sudo] pip install mac-app-env
        ```
        
        #### How it works
        `.env` file
        ```bash
        PATH=path/to/custom/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
        ```
        
        `<app>/Contents/Info.plist`
        ```xml
        <key>LSEnvironment</key>
        <dict>
             <key>PATH</key>
             <string>path/to/custom/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin</string>
        </dict>
        ```
        
        #### Examples
        ```bash
        $ find . "*.app" | xargs python -m mac_app_env .env
        ```
        
        paths with spaces:
        ```bash
        $ find . "*.app" -exec python -m mac_app_env .env {} \;
        ```
        
        <p align="center">
            <a href="https://readme42.com/">readme42.com</a>
        </p>
Keywords: mac app env
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
