9 Commits

Author SHA1 Message Date
ful1e5 ce77c65297 add(docs): how to uninstall 2022-01-29 14:39:41 +05:30
ful1e5 0e221e80e0 slug updated 2021-12-29 14:34:55 +05:30
Kaiz Khatri f575f41f49 Merge pull request #13 from ful1e5/dev
sponsorship links updated
2021-12-24 17:02:54 +05:30
ful1e5 0125db0943 sponsorship links updated 2021-12-24 16:30:57 +05:30
Kaiz Khatri d6453e44a1 Merge pull request #12 from ful1e5/dev
Fix None value warning in builder/symlinks.py
2021-12-24 16:30:51 +05:30
ful1e5 ff8f9feab9 logs updated 2021-12-24 16:17:29 +05:30
Kaiz Khatri 08baf6bc73 Merge pull request #11 from Frikilinux/new_top_left_arrow_cursor
Added symlink for top_left_arrow
2021-12-24 16:14:17 +05:30
ful1e5 75c26ae810 Fix None value warning in builder/symlinks.py 2021-12-24 16:10:12 +05:30
Frikilinux 272d52bc3c Added symlink for top_left_arrow 2021-11-13 20:44:48 -03:00
4 changed files with 34 additions and 1 deletions
+2
View File
@@ -1 +1,3 @@
liberapay: ful1e5
patreon: ful1e5
custom: https://www.paypal.me/kaizkhatri
+10
View File
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [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
### Added
+20
View File
@@ -78,6 +78,26 @@ sudo mv BreezeX-* /usr/share/icons/
4. Open _Control Panel > Personalization and Appearance > Change mouse pointers_, and select **BreezeX Cursors**.
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
## External Libraries
+2 -1
View File
@@ -92,6 +92,7 @@ def add_missing_xcursor(directory) -> None:
"links": [
"arrow",
"default",
"top_left_arrow",
],
},
{
@@ -186,6 +187,6 @@ def add_missing_xcursor(directory) -> None:
with chdir(directory):
for item in symlinks:
src = str(item["src"])
for link in item.get("links"):
for link in item["links"]:
print(f"Creating symlink {src} -> {link}")
os.symlink(src, link)