diff --git a/README.md b/README.md index 9dd1974..667fb89 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,22 @@ gconftool-2 -s -t string /apps/gnome-terminal/profiles/Default/palette "#3030303 $ THEMEE="tin.sh" && wget https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/$THEMEE && chmod +x $THEMEE && ./$THEMEE && rm $THEMEE ``` +- aci.sh + +![aci](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/aci.png) + +```bash + $ THEMEE="aci.sh" && wget https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/$THEMEE && chmod +x $THEMEE && ./$THEMEE && rm $THEMEE +``` + +- aco.sh + +![aco](https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/images/aco.png) + +```bash + $ THEMEE="aco.sh" && wget https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/$THEMEE && chmod +x $THEMEE && ./$THEMEE && rm $THEMEE +``` + ### More colors copy and paste lines directly into your shell. diff --git a/aci.sh b/aci.sh new file mode 100755 index 0000000..13a03d7 --- /dev/null +++ b/aci.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# Save this script into set_colors.sh, make this file executable and run it: +# +# $ chmod +x set_colors.sh +# $ ./set_colors.sh +# +# Alternatively copy lines below directly into your shell. + +gconftool-2 --set /apps/gnome-terminal/profiles/Default/use_theme_background --type bool false +gconftool-2 --set /apps/gnome-terminal/profiles/Default/use_theme_colors --type bool false +gconftool-2 -s -t string /apps/gnome-terminal/profiles/Default/background_color '#0d0d19192626' +gconftool-2 -s -t string /apps/gnome-terminal/profiles/Default/foreground_color '#b4b4e1e1fdfd' +gconftool-2 -s -t string /apps/gnome-terminal/profiles/Default/palette '#363636363636:#ffff08088383:#8383ffff0808:#ffff83830808:#08088383ffff:#83830808ffff:#0808ffff8383:#b6b6b6b6b6b6:#424242424242:#ffff1e1e8e8e:#8e8effff1e1e:#ffff8e8e1e1e:#1e1e8e8effff:#8e8e1e1effff:#1e1effff8e8e:#c2c2c2c2c2c2' \ No newline at end of file diff --git a/aco.sh b/aco.sh new file mode 100755 index 0000000..64ae149 --- /dev/null +++ b/aco.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# Save this script into set_colors.sh, make this file executable and run it: +# +# $ chmod +x set_colors.sh +# $ ./set_colors.sh +# +# Alternatively copy lines below directly into your shell. + +gconftool-2 --set /apps/gnome-terminal/profiles/Default/use_theme_background --type bool false +gconftool-2 --set /apps/gnome-terminal/profiles/Default/use_theme_colors --type bool false +gconftool-2 -s -t string /apps/gnome-terminal/profiles/Default/background_color '#1f1f13130505' +gconftool-2 -s -t string /apps/gnome-terminal/profiles/Default/foreground_color '#b4b4e1e1fdfd' +gconftool-2 -s -t string /apps/gnome-terminal/profiles/Default/palette '#3f3f3f3f3f3f:#ffff08088383:#8383ffff0808:#ffff83830808:#08088383ffff:#83830808ffff:#0808ffff8383:#bebebebebebe:#474747474747:#ffff1e1e8e8e:#8e8effff1e1e:#ffff8e8e1e1e:#1e1e8e8effff:#8e8e1e1effff:#1e1effff8e8e:#c4c4c4c4c4c4' diff --git a/images/aci.png b/images/aci.png new file mode 100644 index 0000000..e5d6860 Binary files /dev/null and b/images/aci.png differ diff --git a/images/aco.png b/images/aco.png new file mode 100644 index 0000000..ba0e80e Binary files /dev/null and b/images/aco.png differ