🛰 Comment intend & typo

This commit is contained in:
ful1e5 2020-08-12 16:31:03 +05:30
parent 7839c4cfeb
commit 5e6884fe33

View file

@ -148,10 +148,12 @@ bash <(wget -qO- "https://raw.githubusercontent.com/ful1e5/apple_cursor/master/s
</p> --> </p> -->
```bash ```bash
# Unpack # extract `macOSBigSur.tar`
mkdir macOSBigSur && tar -xvf macOSBigSur.tar -C macOSBigSur mkdir macOSBigSur && tar -xvf macOSBigSur.tar -C macOSBigSur
# For local users # For local users
mv macOSBigSur ~/.icons/ mv macOSBigSur ~/.icons/
# For all users # For all users
sudo mv macOSBigSur /usr/share/icons/ sudo mv macOSBigSur /usr/share/icons/
``` ```
@ -249,10 +251,10 @@ GitHub Actions is automatically runs on every `push`(on **master** and **dev** b
#### Setup python environment #### Setup python environment
```bash ```bash
python3 -m pip install --upgrade pip # Update pip to latest python3 -m pip install --upgrade pip # Update pip to latest
python3 -m pip3 install virtualenv # Install python virtual environment python3 -m pip3 install virtualenv # Install python virtual environment
virtualenv venv # Create new virtualenv named `venv` virtualenv venv # Create new virtualenv named `venv`
source venv/bin/activate # Activate virtualenv source venv/bin/activate # Activate virtualenv
# For Deactivate virtualenv # For Deactivate virtualenv
deactivate deactivate
@ -265,19 +267,19 @@ deactivate
##### Using yarn ##### Using yarn
```bash ```bash
yarn install # Install all Node Packages yarn install # Install all Node Packages
yarn py_install # Install all PyPi Packages yarn py_install # Install all PyPi Packages
yarn compile # Compile the cursor theme yarn compile # Compile the cursor theme
yarn unpack # To extract`./packages/macOSBigSur.tar` file yarn unpack # To extract`./packages/macOSBigSur.tar` file
``` ```
##### Using npm ##### Using npm
```bash ```bash
npm install # Install all Node Packages npm install # Install all Node Packages
npm py_install # Install all PyPi Packages npm py_install # Install all PyPi Packages
npm compile # Compile the cursor theme npm compile # Compile the cursor theme
npm unpack # To extract`./packages/macOSBigSur.tar` file npm unpack # To extract`./packages/macOSBigSur.tar` file
``` ```
After build `bitmaps` and `packages` directory are generated at project **root**. After build `bitmaps` and `packages` directory are generated at project **root**.