16 lines
444 B
Bash
16 lines
444 B
Bash
#!/bin/bash
|
|
DEST=${1:-${HOME}
|
|
|
|
GIT_USER=zayronxio
|
|
GIT_PROJECT=Zafiro-Nord-Dark
|
|
|
|
git clone --depth 1 https://github.com/${GIT_USE}/${GIT_PROJECT} ${DEST}/.icons/${GIT_PROJECT}
|
|
|
|
# Nord grey dark = https://www.pling.com/p/1967757/
|
|
# Nord black dark = https://www.pling.com/p/1956870/
|
|
# Nord blue dark = https://www.pling.com/p/1937741/
|
|
|
|
# Fix theme file
|
|
sed -i 's|\[actions/16\]|\[actions/16-Dark\]|g' ${DEST}/.icons/${GIT_PROJECT}/index.theme
|
|
|