This commit is contained in:
vinceliuice 2022-02-10 01:48:03 +08:00
parent 06f522be36
commit 0f9c85f45a
15 changed files with 1288 additions and 1 deletions

View file

@ -11,6 +11,12 @@
![2](1080p/Monterey.png)
![3](1080p/Monterey-dark.png)
## Nord Wallpapers
![1](Wallpaper-nord/Mojave-nord-light.png)
![2](Wallpaper-nord/Mojave-nord-dark.png)
![3](Wallpaper-nord/WhiteSur-nord.png)
![4](Wallpaper-nord/Monterey-nord.png)
## Installation
### Install Gnome Backgrounds (wallpaper will change according to time)
@ -40,6 +46,7 @@ sudo ./install-gnome-backgrounds.sh
-t, --theme VARIANT Specify theme variant(s) [whitesur|monterey] (Default: All variants)s)
-c, --color VARIANT Specify color variant(s) [light|dark] (Default: All variants)s)
-s, --screen VARIANT Specify screen variant [1080p|2k|4k] (Default: 1080p)
-n, --nord VARIANT Specify Nord color variant(s)
-u, --uninstall Uninstall wallpappers
-h, --help Show help
```

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 KiB

View file

@ -44,6 +44,7 @@ OPTIONS:
-t, --theme VARIANT Specify theme variant(s) [whitesur|monterey] (Default: All variants)s)
-c, --color VARIANT Specify color variant(s) [night|light|dark] (Default: All variants)s)
-s, --screen VARIANT Specify screen variant [1080p|2k|4k] (Default: 1080p)
-n, --nord VARIANT Specify Nord color variant(s)
-u, --uninstall Uninstall wallpappers
-h, --help Show help
@ -76,6 +77,10 @@ while [[ $# -gt 0 ]]; do
uninstall='true'
shift
;;
-n|--nord)
nord='true'
shift
;;
-t|--theme)
shift
for theme in "$@"; do
@ -177,6 +182,12 @@ if [[ "${#screens[@]}" -eq 0 ]] ; then
screens=("${SCREEN_VARIANTS[0]}")
fi
install_nord() {
prompt -i "* Install Nord Wallpapers in ${WALLPAPER_DIR}... "
mkdir -p "${WALLPAPER_DIR}"g
cp -rf ${REPO_DIR}/Wallpaper-nord/*.png ${WALLPAPER_DIR}
}
install_wallpaper() {
for theme in "${themes[@]}"; do
for color in "${colors[@]}"; do
@ -197,7 +208,11 @@ uninstall_wallpaper() {
echo
if [[ "${uninstall}" != 'true' ]]; then
if [[ "${nord}" != 'true' ]]; then
install_wallpaper
else
install_nord
fi
else
uninstall_wallpaper
fi

View file

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 45 KiB

View file

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 45 KiB

View file

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

View file

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 49 KiB

1265
src/WhiteSur-Nord.svg Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 57 KiB

View file

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View file

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View file

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View file

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB