alpine-setup/system/installthemes.sh

51 lines
1.5 KiB
Bash
Raw Permalink Normal View History

2024-07-26 17:01:46 +02:00
#!/bin/sh
2024-07-28 15:31:14 +02:00
########## ICONS ###############
### Candy
2024-07-26 17:01:46 +02:00
cd /usr/share/icons/
wget https://github.com/EliverLara/candy-icons/archive/refs/heads/master.zip
unzip master.zip
rm master.zip
mv candy-icons-master candy-icons
2024-07-26 17:01:46 +02:00
2024-07-28 15:31:14 +02:00
### WhiteSur
cd /root
git clone --depth=1 https://github.com/vinceliuice/WhiteSur-icon-theme
2024-07-28 17:00:17 +02:00
cd WhiteSur-icon-theme
./install.sh -a
2024-07-28 15:31:14 +02:00
cd /root
rm -rf WhiteSur-icon-theme
########## GTK THEMES ##########
### Sweet Dark
2024-07-26 17:01:46 +02:00
cd /usr/share/themes/
2024-07-26 17:29:44 +02:00
wget https://github.com/EliverLara/Sweet/releases/latest/download/Sweet-Dark-v40.tar.xz
2024-07-26 17:01:46 +02:00
tar xf Sweet-Dark-v40.tar.xz
rm Sweet-Dark-v40.tar.xz
2024-07-28 15:31:14 +02:00
### 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
2024-07-28 17:03:20 +02:00
########## CURSORS #############
### BreezeX
cd /usr/share/icons/
wget https://github.com/ful1e5/BreezeX_Cursor/releases/latest/download/BreezeX-Light.tar.xz
tar xf BreezeX-Light.tar.xz
rm BreezeX-Light.tar.xz
2024-07-28 15:31:14 +02:00
########## FONTS ###############
mkdir -p /usr/share/fonts/EnvyCodeR
cd /usr/share/fonts/EnvyCodeR/
wget https://github.com/ryanoasis/nerd-fonts/releases/latest/download/EnvyCodeR.zip
unzip EnvyCodeR.zip
rm EnvyCodeR.zip
2024-07-28 15:31:14 +02:00
echo "theme-name=Sweet-Dark-v40" >> /etc/lightdm/lightdm-gtk-greeter.conf
echo "icon-theme-name=candy-icons" >> /etc/lightdm/lightdm-gtk-greeter.conf