9 lines
168 B
Bash
9 lines
168 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd /tmp
|
||
|
git clone --depth=1 https://github.com/vinceliuice/WhiteSur-firefox-theme
|
||
|
cd WhiteSur-firefox-theme
|
||
|
./install.sh
|
||
|
cd ..
|
||
|
rm -rf WhiteSur-firefox-theme
|