forked from sh-edraft.de/sh_linux_installation_scripts
11 lines
330 B
Bash
11 lines
330 B
Bash
#!/bin/bash
|
|
|
|
install_tela_circle_icons() {
|
|
git clone https://github.com/vinceliuice/Tela-circle-icon-theme
|
|
cd Tela-circle-icon-theme
|
|
./install.sh -a
|
|
cd ..
|
|
sudo rm -r Tela-circle-icon-theme
|
|
|
|
sudo cp -r ~/.local/share/icons/hicolor/128x128/apps/* ~/.local/share/icons/Tela-circle-orange-dark/scalable/apps/
|
|
} |