|
1 | 1 | # Apple Cursor
|
2 | 2 |
|
3 | 3 | 
|
| 4 | + |
4 | 5 | Open source macOS Cursors for `Windows` and `Linux` with _HiDPI Support_ .
|
5 | 6 |
|
6 | 7 | [](https://github.com/ful1e5/apple_cursor/actions?query=workflow%3Abuild)
|
@@ -140,7 +141,7 @@ Run the `uninstall.bat` script packed with the `.zip` archive
|
140 | 141 | ### Prerequisites
|
141 | 142 |
|
142 | 143 | - Python version 3.7 or higher
|
143 |
| -- [clickgen](https://github.com/ful1e5/clickgen)>=2.1.8 (`pip install clickgen`) |
| 144 | +- [clickgen](https://github.com/ful1e5/clickgen)>=2.2.2 (`pip install clickgen`) |
144 | 145 | - [yarn](https://github.com/yarnpkg/yarn)
|
145 | 146 |
|
146 | 147 | ### Quick start
|
@@ -195,71 +196,71 @@ npx cbmp render.json
|
195 | 196 | To build Windows cursor with size `16`:
|
196 | 197 |
|
197 | 198 | ```bash
|
198 |
| -ctgen build.toml -s 16 -p windows -d 'bitmaps/macOS' -n 'macOS' -c 'macOS Cursors with size 16' |
| 199 | +ctgen build.toml -s 16 -p windows -d "bitmaps/macOS" -n "macOS" -c "macOS Cursors with size 16" |
199 | 200 | ```
|
200 | 201 |
|
201 | 202 | You can also customize output directory with `-o` option:
|
202 | 203 |
|
203 | 204 | ```bash
|
204 |
| -ctgen build.toml -s 16 -p windows -d 'bitmaps/macOS' -o 'out' -n 'macOS' -c 'macOS Cursors with size 16' |
| 205 | +ctgen build.toml -s 16 -p windows -d "bitmaps/macOS" -o "out" -n "macOS" -c "macOS Cursors with size 16" |
205 | 206 | ```
|
206 | 207 |
|
207 | 208 | ##### Customize XCursor size
|
208 | 209 |
|
209 | 210 | To build XCursor with size `16`:
|
210 | 211 |
|
211 | 212 | ```bash
|
212 |
| -ctgen build.toml -s 16 -p x11 -d 'bitmaps/macOS' -n 'macOS' -c 'macOS XCursors with size 16' |
| 213 | +ctgen build.toml -s 16 -p x11 -d "bitmaps/macOS" -n "macOS" -c "macOS XCursors with size 16" |
213 | 214 | ```
|
214 | 215 |
|
215 | 216 | You can also assign multiple sizes to `ctgen` for XCursors build:
|
216 | 217 |
|
217 | 218 | ```bash
|
218 |
| -ctgen build.toml -s 16 24 32 -p x11 -d 'bitmaps/macOS' -n 'macOS' -c 'Custom Sizes macOS XCursors' |
| 219 | +ctgen build.toml -s 16 24 32 -p x11 -d "bitmaps/macOS" -n "macOS" -c "Custom Sizes macOS XCursors" |
219 | 220 | ```
|
220 | 221 |
|
221 | 222 | #### Examples
|
222 | 223 |
|
223 | 224 | Lets generate macOS cursor with green and black colors:
|
224 | 225 |
|
225 | 226 | ```bash
|
226 |
| -npx cbmp -d 'svg' -o 'bitmaps/macOS-Hacker' -bc '#00FE00' -oc '#000000' |
| 227 | +npx cbmp -d "svg" -o "bitmaps/macOS-Hacker" -bc "#00FE00" -oc "#000000" |
227 | 228 | ```
|
228 | 229 |
|
229 | 230 | After rendering custom color you have to build cursor through `ctgen`:
|
230 | 231 |
|
231 | 232 | ```bash
|
232 |
| -ctgen build.toml -d 'bitmaps/macOS-Hacker' -n 'macOS-Hacker' -c 'Green and Black macOS cursors.' |
| 233 | +ctgen build.toml -d "bitmaps/macOS-Hacker" -n "macOS-Hacker" -c "Green and Black macOS cursors." |
233 | 234 | ```
|
234 | 235 |
|
235 | 236 | Afterwards, Generated theme can be found in the `themes` directory.
|
236 | 237 |
|
237 | 238 | ###### macOS Gruvbox
|
238 | 239 |
|
239 | 240 | ```bash
|
240 |
| -npx cbmp -d 'svg' -o 'bitmaps/macOS-Gruvbox' -bc '#282828' -oc '#EBDBB2' -wc '#000000' |
241 |
| -ctgen build.toml -d 'bitmaps/macOS-Gruvbox' -n 'macOS-Gruvbox' -c 'Groovy macOS cursors.' |
| 241 | +npx cbmp -d "svg" -o "bitmaps/macOS-Gruvbox" -bc "#282828" -oc "#EBDBB2" -wc "#000000" |
| 242 | +ctgen build.toml -d "bitmaps/macOS-Gruvbox" -n "macOS-Gruvbox" -c "Groovy macOS cursors." |
242 | 243 | ```
|
243 | 244 |
|
244 | 245 | ###### macOS Solarized Dark
|
245 | 246 |
|
246 | 247 | ```bash
|
247 |
| -npx cbmp -d 'svg' -o 'bitmaps/macOS-Solarized-Dark' -bc '#002b36' -oc '#839496' -wc '#000000' |
248 |
| -ctgen build.toml -d 'bitmaps/macOS-Solarized-Dark' -n 'macOS-Solarized-Dark' -c 'Solarized Dark macOS cursors.' |
| 248 | +npx cbmp -d "svg" -o "bitmaps/macOS-Solarized-Dark" -bc "#002b36" -oc "#839496" -wc "#000000" |
| 249 | +ctgen build.toml -d "bitmaps/macOS-Solarized-Dark" -n "macOS-Solarized-Dark" -c "Solarized Dark macOS cursors." |
249 | 250 | ```
|
250 | 251 |
|
251 | 252 | ###### macOS Solarized Light
|
252 | 253 |
|
253 | 254 | ```bash
|
254 |
| -npx cbmp -d 'svg' -o 'bitmaps/macOS-Solarized-Light' -bc '#839496' -oc '#002b36' |
255 |
| -ctgen build.toml -d 'bitmaps/macOS-Solarized-Light' -n 'macOS-Solarized-Light' -c 'Solarized Light macOS cursors.' |
| 255 | +npx cbmp -d "svg" -o "bitmaps/macOS-Solarized-Light" -bc "#839496" -oc "#002b36" |
| 256 | +ctgen build.toml -d "bitmaps/macOS-Solarized-Light" -n "macOS-Solarized-Light" -c "Solarized Light macOS cursors." |
256 | 257 | ```
|
257 | 258 |
|
258 | 259 | ###### macOS Dracula
|
259 | 260 |
|
260 | 261 | ```bash
|
261 |
| -npx cbmp -d 'svg' -o 'bitmaas/macOS-Dracula' -bc '#282a36' -oc '#f8f8f2' |
262 |
| -ctgen build.toml -d 'bitmaps/macOS-Dracula' -n 'macOS-Dracula' -c 'Dracula macOS cursors.' |
| 262 | +npx cbmp -d "svg" -o "bitmaas/macOS-Dracula" -bc "#282a36" -oc "#f8f8f2" |
| 263 | +ctgen build.toml -d "bitmaps/macOS-Dracula" -n "macOS-Dracula" -c "Dracula macOS cursors." |
263 | 264 | ```
|
264 | 265 |
|
265 | 266 | ## Testing Cursor
|
|
0 commit comments