forked from sh-edraft.de/sh_linux_installation_scripts
9 lines
210 B
Bash
9 lines
210 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
|
|
} |