mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-07 00:05:10 +01:00
21 lines
458 B
Bash
Executable File
21 lines
458 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -d "Numix Daily" ]; then
|
|
echo "Numix theme not found!"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -d "Numix Blue" ]; then
|
|
rm -r "Numix Blue"
|
|
fi
|
|
|
|
cp -a "Numix Daily" "Numix Blue"
|
|
cd "Numix Blue"
|
|
|
|
# change orange hilight to blue
|
|
#find . -type f -print0 | xargs -0 sed -i 's/d64937/1BA1E2/g'
|
|
find . -type f -print0 | xargs -0 sed -i 's/d64937/0072b3/g'
|
|
|
|
# change darkish gray background to lighter
|
|
find . -type f -print0 | xargs -0 sed -i 's/dedede/eeeeee/g'
|