Added WhiteSur themes

This commit is contained in:
datalore 2024-07-28 15:31:14 +02:00
parent 72671d212f
commit 95a187cb24
2 changed files with 27 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
apk add bash zoxide neovim eza bat ristretto htop fzf py3-pip apk add bash zoxide neovim eza bat ristretto htop fzf py3-pip tar xz
pip install hyfetch --break-system-packages pip install hyfetch --break-system-packages

View File

@ -1,21 +1,47 @@
#!/bin/sh #!/bin/sh
########## ICONS ###############
### Candy
cd /usr/share/icons/ cd /usr/share/icons/
wget https://github.com/EliverLara/candy-icons/archive/refs/heads/master.zip wget https://github.com/EliverLara/candy-icons/archive/refs/heads/master.zip
unzip master.zip unzip master.zip
rm master.zip rm master.zip
mv candy-icons-master candy-icons mv candy-icons-master candy-icons
### WhiteSur
cd /root
git clone --depth=1 https://github.com/vinceliuice/WhiteSur-icon-theme
cd WhiteSur-icon-theme/release
./make-release.sh
mv WhiteSur.tar.xz /usr/share/icons/
cd /root
rm -rf WhiteSur-icon-theme
cd /usr/share/icons/
tar xf WhiteSur.tar.xz
rm WhiteSur.tar.xz
########## GTK THEMES ##########
### Sweet Dark
cd /usr/share/themes/ cd /usr/share/themes/
wget https://github.com/EliverLara/Sweet/releases/latest/download/Sweet-Dark-v40.tar.xz wget https://github.com/EliverLara/Sweet/releases/latest/download/Sweet-Dark-v40.tar.xz
tar xf Sweet-Dark-v40.tar.xz tar xf Sweet-Dark-v40.tar.xz
rm Sweet-Dark-v40.tar.xz rm Sweet-Dark-v40.tar.xz
### WhiteSur
wget https://github.com/vinceliuice/WhiteSur-gtk-theme/raw/master/release/WhiteSur-Light.tar.xz
wget https://github.com/vinceliuice/WhiteSur-gtk-theme/raw/master/release/WhiteSur-Dark.tar.xz
tar xf WhiteSur-Light.tar.xz
tar xf WhiteSur-Dark.tar.xz
rm WhiteSur-Light.tar.xz
rm WhiteSur-Dark.tar.xz
########## FONTS ###############
mkdir -p /usr/share/fonts/EnvyCodeR mkdir -p /usr/share/fonts/EnvyCodeR
cd /usr/share/fonts/EnvyCodeR/ cd /usr/share/fonts/EnvyCodeR/
wget https://github.com/ryanoasis/nerd-fonts/releases/latest/download/EnvyCodeR.zip wget https://github.com/ryanoasis/nerd-fonts/releases/latest/download/EnvyCodeR.zip
unzip EnvyCodeR.zip unzip EnvyCodeR.zip
rm EnvyCodeR.zip rm EnvyCodeR.zip
echo "theme-name=Sweet-Dark-v40" >> /etc/lightdm/lightdm-gtk-greeter.conf echo "theme-name=Sweet-Dark-v40" >> /etc/lightdm/lightdm-gtk-greeter.conf
echo "icon-theme-name=candy-icons" >> /etc/lightdm/lightdm-gtk-greeter.conf echo "icon-theme-name=candy-icons" >> /etc/lightdm/lightdm-gtk-greeter.conf