14 lines
370 B
Bash
Executable File
14 lines
370 B
Bash
Executable File
#!/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/latest/download/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."
|