🚀 Out Directory changed

This commit is contained in:
ful1e5 2020-08-26 12:02:23 +05:30
parent 95723d96aa
commit a4f680cafb
2 changed files with 6 additions and 6 deletions

View file

@ -270,7 +270,7 @@ deactivate
yarn install # Install all Node Packages
yarn py_install # Install all PyPi Packages
yarn compile # Compile the cursor theme
yarn unpack # To extract`./packages/macOSBigSur.tar` file
yarn unpack # To extract`./themes/macOSBigSur.tar` file
```
##### Using npm
@ -279,19 +279,19 @@ yarn unpack # To extract`./packages/mac
npm install # Install all Node Packages
npm py_install # Install all PyPi Packages
npm compile # Compile the cursor theme
npm unpack # To extract`./packages/macOSBigSur.tar` file
npm unpack # To extract`./themes/macOSBigSur.tar` file
```
After build `bitmaps` and `packages` directory are generated at project **root**.
After build `bitmaps` and `themes` directory are generated at project **root**.
### Install Build Theme
All builded cursor packages are available inside `packages` directory.
All builded cursor themes are available inside `themes` directory.
#### Linux
```bash
cd ./packages
cd ./themes
rm -rf ~/.icons/macOSBigSur && cp macOSBigSur ~/.icons/ # installing Theme to local user(recommend)
```

View file

@ -6,7 +6,7 @@ from config import name, temp_folder, bitmaps_dir, win_out, x11_out, window_inst
from os import path, listdir, rename, remove
package_dir = "./packages"
package_dir = "./themes"
x11_out_dir = path.join(package_dir, x11_out)
win_out_dir = path.join(package_dir, win_out)