26 lines
622 B
Bash
26 lines
622 B
Bash
#!/usr/bin/env zsh
|
|
|
|
DEST=${1:-/etc/skel}
|
|
|
|
sudo apt install -y enlightenment libeet-bin
|
|
|
|
sudo apt install -y terminology
|
|
sudo update-alternatives --set x-terminal-emulator /usr/bin/terminology
|
|
|
|
#sudo dpkg -i /var/tmp/automate/relightable-fc8c4a_1.0.0-1_amd64.deb
|
|
|
|
|
|
cd /var/tmp
|
|
theme="Dimensions"
|
|
theme="Dark"
|
|
git clone -b ${theme} https://github.com/simotek/Enlightenment-Themes enlightenment-${theme}
|
|
cd enlightenment-${theme}
|
|
bash ./build-darkmod.sh
|
|
cd ..
|
|
|
|
theme="Dimensions"
|
|
git clone -b ${theme} https://github.com/simotek/Enlightenment-Themes enlightenment-${theme}
|
|
cd enlightenment-${theme}
|
|
bash ./build-darkmod.sh
|
|
|