You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
658 B
Plaintext
31 lines
658 B
Plaintext
5 years ago
|
#!/bin/bash
|
||
|
|
||
|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||
|
|
||
|
function error {
|
||
|
echo -e "\\e[91m$1\\e[39m"
|
||
|
exit 1
|
||
|
}
|
||
|
|
||
|
#get theme files
|
||
|
rm -rf ~/geany-themes
|
||
|
git clone --depth 1 https://github.com/codebrainz/geany-themes || error "Failed to git clone the geany themes repository!"
|
||
|
|
||
|
#remove all downloaded themes from .config
|
||
|
files="$(cd ~/geany-themes/colorschemes
|
||
|
ls)"
|
||
|
|
||
|
#no need for that repo anymore
|
||
|
rm -f ~/geany-themes &>/dev/null
|
||
|
|
||
|
IFS=$'\n'
|
||
|
|
||
|
for file in $files ;do
|
||
|
rm -f ~/".config/geany/colorschemes/$file"
|
||
|
done
|
||
|
|
||
|
#clear geany's color_scheme entry
|
||
|
sed -i '/color_scheme=/d' ~/.config/geany/geany.conf
|
||
|
|
||
|
exit 0
|