mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-06 21:45:10 +01:00
Merged green into main script
This commit is contained in:
@@ -40,3 +40,15 @@ cd "Numix Orange"
|
|||||||
find . -type f -print0 | xargs -0 sed -i 's/d64937/ff8813/g'
|
find . -type f -print0 | xargs -0 sed -i 's/d64937/ff8813/g'
|
||||||
# change darkish gray background to lighter
|
# change darkish gray background to lighter
|
||||||
find . -type f -print0 | xargs -0 sed -i 's/dedede/eeeeee/g'
|
find . -type f -print0 | xargs -0 sed -i 's/dedede/eeeeee/g'
|
||||||
|
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
if [ -d "Numix Green" ]; then
|
||||||
|
rm -r "Numix Green"
|
||||||
|
fi
|
||||||
|
|
||||||
|
cp -a "Numix Daily" "Numix Green"
|
||||||
|
cd "Numix Green"
|
||||||
|
|
||||||
|
# change orange hilight to green (shade from Faba-Mint)
|
||||||
|
find . -type f -print0 | xargs -0 sed -i 's/d64937/79a142/g'
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Make sure only root can run our script
|
|
||||||
if [[ $EUID -ne 0 ]]; then
|
|
||||||
echo "This script must be run as root" 1>&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd /usr/share/themes
|
|
||||||
|
|
||||||
if [ ! -d "Numix Daily" ]; then
|
|
||||||
echo "Numix theme not found!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -d "Numix Green" ]; then
|
|
||||||
rm -r "Numix Green"
|
|
||||||
fi
|
|
||||||
|
|
||||||
cp -a "Numix Daily" "Numix Green"
|
|
||||||
cd "Numix Green"
|
|
||||||
|
|
||||||
# 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/79a142/g'
|
|
||||||
|
|
||||||
# change darkish gray background to lighter
|
|
||||||
#find . -type f -print0 | xargs -0 sed -i 's/dedede/eeeeee/g'
|
|
||||||
Reference in New Issue
Block a user