14 lines
370 B
Bash
14 lines
370 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd /usr/share/icons/
|
||
|
wget https://github.com/EliverLara/candy-icons/archive/refs/heads/master.zip
|
||
|
unzip master.zip
|
||
|
rm master.zip
|
||
|
|
||
|
cd /usr/share/themes/
|
||
|
wget https://github.com/EliverLara/Sweet/releases/download/latest/Sweet-Dark-v40.tar.xz
|
||
|
tar xf Sweet-Dark-v40.tar.xz
|
||
|
rm Sweet-Dark-v40.tar.xz
|
||
|
|
||
|
echo "Themes installed. Configuration has to be done manually."
|