From ca8dc4c194f1633dea19ee08c4ceaa36f4f20f59 Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Sat, 27 Nov 2021 15:15:38 +0530 Subject: [PATCH] fix: `make install` command --- CHANGELOG.md | 5 ++++- Makefile | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6827871..d18b0a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `svg/*.py` module support inside `pyright` config +### Changed + +- Some cursors are very blurry on lower sizes fixed #74 + ## [v1.2.3] - 23 Nov 2021 ### Added @@ -31,7 +35,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - fixed text cursor state in `xterm` & `vertical-text` (increase border size) #67 - bitmapper `core` as node package - macOSBigSur .svg files moved to `svgs/bigsur` directory -- Some cursors are very blurry on lower sizes fixed #74 ## [v1.2.2] - 31 Oct 2021 diff --git a/Makefile b/Makefile index 118432f..05dff9e 100644 --- a/Makefile +++ b/Makefile @@ -57,14 +57,14 @@ install: $(src) @echo "> Installing '$(THEME_PREFIX)' cursors inside $(local)/..." @mkdir -p $(local) @cp -r ./themes/$(THEME_PREFIX)BigSur $(local_dest) - @cp -r ./themes/$(THEME_PREFIX)BigSur -White $(local_dest) && echo "> Installed!" + @cp -r ./themes/$(THEME_PREFIX)BigSur-White $(local_dest) @cp -r ./themes/$(THEME_PREFIX)Monterey $(local_dest) - @cp -r ./themes/$(THEME_PREFIX)Monterey -White $(local_dest) && echo "> Installed!" + @cp -r ./themes/$(THEME_PREFIX)Monterey-White $(local_dest) && echo "> Installed!" @else @echo "> Installing '$(THEME_PREFIX)' cursors inside $(root)/..." @mkdir -p $(root) @sudo cp -r ./themes/$(THEME_PREFIX)BigSur $(root_dest) - @sudo cp -r ./themes/$(THEME_PREFIX)BigSur-White $(root_dest) && echo "> Installed!" + @sudo cp -r ./themes/$(THEME_PREFIX)BigSur-White $(root_dest) @sudo cp -r ./themes/$(THEME_PREFIX)Monterey $(root_dest) @sudo cp -r ./themes/$(THEME_PREFIX)Monterey-White $(root_dest) && echo "> Installed!" @fi