Metadata-Version: 2.1
Name: weekdatemac
Version: 1.0.1
Summary: A macOS script to display the current week number in the menu bar.
Home-page: https://github.com/Silicon27/weekdatemac
Author: Yang Silicon
Author-email: yangsiliconl@gmail.com
License: UNKNOWN
Description: # What Week Is It?
        
        What week is it? This is a simple Python script that tells you what week of the year it is.
        
        This is the MacOS implementation of the script.
        
        ## Setup
        First, clone and navigate to the repository:
        ```bash
        git clone https://github.com/Silicon27/weekdatemac
        cd weekdatemac
        ```
        
        Make it executable:
        ```bash
        chmod +x run_week_menu_bar.sh
        ```
        
        Move it to `~/Library/LaunchAgents/`
        ```bash
        mv com.weekmenubar.plist ~/Library/LaunchAgents/
        ```
        
        Then you can add it to your Launch Agent with `launchctl` and run it:
        ```bash
        launchctl unload ~/Library/LaunchAgents/com.weekmenubar.plist && \
        launchctl load ~/Library/LaunchAgents/com.weekmenubar.plist
        ```
        
        And that's it! You should see the week number in your menu bar.
        
        An example would look like this: 
        ![Week Date Mac](/demo.png)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
