Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ce77c65297 | |||
| 0e221e80e0 | |||
| f575f41f49 | |||
| 0125db0943 | |||
| d6453e44a1 | |||
| ff8f9feab9 | |||
| 08baf6bc73 | |||
| 75c26ae810 | |||
| 272d52bc3c |
@@ -1 +1,3 @@
|
|||||||
liberapay: ful1e5
|
liberapay: ful1e5
|
||||||
|
patreon: ful1e5
|
||||||
|
custom: https://www.paypal.me/kaizkhatri
|
||||||
|
|||||||
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [unreleased]
|
## [unreleased]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Add cursor top_left_arrow #10 #11
|
||||||
|
- Uninstall docs ful1e5/apple_cursor#79 ful1e5/apple_cursor#80
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Fix `None` value warning in `builder/symlinks.py`
|
||||||
|
- sponsorship links updated
|
||||||
|
|
||||||
## [v1.0.3] - 13 Nov 2021
|
## [v1.0.3] - 13 Nov 2021
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -78,6 +78,26 @@ sudo mv BreezeX-* /usr/share/icons/
|
|||||||
4. Open _Control Panel > Personalization and Appearance > Change mouse pointers_, and select **BreezeX Cursors**.
|
4. Open _Control Panel > Personalization and Appearance > Change mouse pointers_, and select **BreezeX Cursors**.
|
||||||
5. Click '**Apply**'.
|
5. Click '**Apply**'.
|
||||||
|
|
||||||
|
### Uninstall
|
||||||
|
|
||||||
|
#### Linux/X11
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# From local users
|
||||||
|
rm -rf ~/.icons/BreezeX-*
|
||||||
|
|
||||||
|
# From all users
|
||||||
|
sudo rm -rf /usr/share/icons/BreezeX-*
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Windows
|
||||||
|
|
||||||
|
1. Go to **Registry Editor** by typing the same in the _start search box_.
|
||||||
|
2. Expand `HKEY_CURRENT_USER` folder and expand `Control Panel` folder.
|
||||||
|
3. Go to `Cursors` folder and click on `Schemes` folder - all the available custom cursors that are installed will be listed here.
|
||||||
|
4. **Right Click** on the name of cursor file you want to uninstall; for eg.: \_BreezeX Cursors\_ and click `Delete`.
|
||||||
|
5. Click '**yes**' when prompted.
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|
||||||
## External Libraries
|
## External Libraries
|
||||||
|
|||||||
@@ -92,6 +92,7 @@ def add_missing_xcursor(directory) -> None:
|
|||||||
"links": [
|
"links": [
|
||||||
"arrow",
|
"arrow",
|
||||||
"default",
|
"default",
|
||||||
|
"top_left_arrow",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -186,6 +187,6 @@ def add_missing_xcursor(directory) -> None:
|
|||||||
with chdir(directory):
|
with chdir(directory):
|
||||||
for item in symlinks:
|
for item in symlinks:
|
||||||
src = str(item["src"])
|
src = str(item["src"])
|
||||||
for link in item.get("links"):
|
for link in item["links"]:
|
||||||
print(f"Creating symlink {src} -> {link}")
|
print(f"Creating symlink {src} -> {link}")
|
||||||
os.symlink(src, link)
|
os.symlink(src, link)
|
||||||
|
|||||||
Reference in New Issue
Block a user