diff --git a/README.md b/README.md index 094768b..809acc1 100644 --- a/README.md +++ b/README.md @@ -31,19 +31,14 @@ sudo ./install-gnome-backgrounds.sh -h, --help Show help ``` -## WhiteSur (Big Sur) Wallpapers -![1](1080p/WhiteSur-light.png) -![2](1080p/WhiteSur.png) -![3](1080p/WhiteSur-dark.png) +## Ventura Wallpapers +![preview](preview-ventura.png) ## Monterey Wallpapers -![1](1080p/Monterey-light.png) -![2](1080p/Monterey.png) -![3](1080p/Monterey-dark.png) +![preview](preview-monterey.png) + +## WhiteSur (Big Sur) Wallpapers +![preview](preview-whitesur.png) ## Nord Wallpapers -![1](Wallpaper-nord/Mojave-nord-light.png) -![2](Wallpaper-nord/Mojave-nord-dark.png) -![3](Wallpaper-nord/WhiteSur-nord-light.png) -![4](Wallpaper-nord/WhiteSur-nord-dark.png) -![5](Wallpaper-nord/Monterey-nord.png) +![preview](preview-nord.png) diff --git a/install-wallpapers.sh b/install-wallpapers.sh index 6758ce0..3f59b97 100755 --- a/install-wallpapers.sh +++ b/install-wallpapers.sh @@ -4,7 +4,7 @@ REPO_DIR="$(cd "$(dirname "$0")" && pwd)" WALLPAPER_DIR="$HOME/.local/share/backgrounds" THEME_VARIANTS=('WhiteSur' 'Monterey' 'Ventura') -COLOR_VARIANTS=('-morning' '-light' '-dark') +COLOR_VARIANTS=('' '-light' '-dark') SCREEN_VARIANTS=('1080p' '2k' '4k') #COLORS @@ -62,7 +62,7 @@ install() { mkdir -p "${WALLPAPER_DIR}" if [[ "${theme}" == 'Ventura' ]]; then - [[ "${color}" == '-morning' ]] && local color='-light' + [[ "${color}" == '' ]] && local color='-light' fi [[ -f ${WALLPAPER_DIR}/${theme}${color}.jpg ]] && rm -rf ${WALLPAPER_DIR}/${theme}${color}.jpg @@ -132,7 +132,7 @@ while [[ $# -gt 0 ]]; do shift for color in "$@"; do case "$color" in - morning) + night) colors+=("${COLOR_VARIANTS[0]}") shift 1 ;; diff --git a/preview-monterey.png b/preview-monterey.png new file mode 100644 index 0000000..eb02fbb Binary files /dev/null and b/preview-monterey.png differ diff --git a/preview-nord.png b/preview-nord.png new file mode 100644 index 0000000..faf725e Binary files /dev/null and b/preview-nord.png differ diff --git a/preview-ventura.png b/preview-ventura.png new file mode 100644 index 0000000..30667bf Binary files /dev/null and b/preview-ventura.png differ diff --git a/preview-whitesur.png b/preview-whitesur.png new file mode 100644 index 0000000..e887a78 Binary files /dev/null and b/preview-whitesur.png differ