1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00

Create blue variant of the excellent Numix GTK theme

This commit is contained in:
Michiel Scholten
2014-07-21 17:09:56 +02:00
parent 3443b0a9c2
commit 36cd035716

15
bin/numix_color_blue Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
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'