Created
August 12, 2014 21:19
-
-
Save anonymous/8eedaeb24c484c67d9ef to your computer and use it in GitHub Desktop.
Sets Pantheon Terminal (Elementary OS) to Solarized Theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo | |
echo "This script sets the pantheon terminal to the Solarized theme." | |
echo | |
until [[ $scheme -eq 1 ]] || [[ $scheme -eq 2 ]] || [[ $scheme -eq 3 ]]; do | |
echo "Choose one:" | |
echo "1) Light" | |
echo "2) Dark" | |
echo "3) Revert to default" | |
read scheme | |
done | |
base0='#838394949696' | |
base1='#9393a1a1a1a1' | |
base3='#fdfdf6f6e3e3' | |
base00='#65657b7b8383' | |
base01='#58586e6e7575' | |
base03='#00002B2B3636' | |
solarized_palette='#070736364242:#DCDC32322F2F:#858599990000:#B5B589890000:#26268B8BD2D2:#D3D336368282:#2A2AA1A19898:#EEEEE8E8D5D5:#00002B2B3636:#CBCB4B4B1616:#58586E6E7575:#65657B7B8383:#838394949696:#6C6C7171C4C4:#9393A1A1A1A1:#FDFDF6F6E3E3' | |
default_palette='#303030:#e1321a:#6ab017:#ffc005:#004f9e:#ec0048:#2aa7e7:#f2f2f2:#5d5d5d:#ff361e:#7bc91f:#ffd00a:#0071ff:#ff1d62:#4bb8fd:#a020f0' | |
case $scheme in | |
1 ) # light | |
gsettings set org.pantheon.terminal.settings background $base3 | |
gsettings set org.pantheon.terminal.settings foreground $base00 | |
gsettings set org.pantheon.terminal.settings cursor-color $base00 | |
gsettings set org.pantheon.terminal.settings palette $solarized_palette | |
;; | |
2 ) # dark | |
gsettings set org.pantheon.terminal.settings background $base03 | |
gsettings set org.pantheon.terminal.settings foreground $base0 | |
gsettings set org.pantheon.terminal.settings cursor-color $base0 | |
gsettings set org.pantheon.terminal.settings palette $solarized_palette | |
;; | |
3 ) # default | |
gsettings set org.pantheon.terminal.settings background '#101010' | |
gsettings set org.pantheon.terminal.settings foreground '#f2f2f2' | |
gsettings set org.pantheon.terminal.settings cursor-color '#FFFFFF' | |
gsettings set org.pantheon.terminal.settings palette $default_palette | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I wanted to thank you for this: I made a couple tiny edits, but you did all the work! Thank you!
https://github.com/karlapsite/eos/blob/master/Scripts/changeColor.sh