Skip to content

Instantly share code, notes, and snippets.

@gamingrobot
Forked from codeforkjeff/solarize.sh
Last active January 2, 2016 23:19
Show Gist options
  • Save gamingrobot/8375996 to your computer and use it in GitHub Desktop.
Save gamingrobot/8375996 to your computer and use it in GitHub Desktop.
#!/bin/sh
#
# Shell script that configures gnome-terminal to use monokai.sh theme
# colors. Written for Ubuntu 11.10, untested on anything else.
#
# Monokai theme: https://github.com/oneKelvinSmith/monokai/blob/master/monokai.palette
#
# Adapted from these sources:
# https://gist.github.com/1280177
# http://xorcode.com/guides/solarized-vim-eclipse-ubuntu/
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 --set "/apps/gnome-terminal/profiles/Default/palette" --type string "#494948483E3E:#F9F926267272:#A6A6E2E22E2E:#FDFD97971F1F:#6666D9D9EFEF:#AEAE8181FFFF:#A1A1EFEFE4E4:#F8F8F8F8F2F2:#757571715E5E:#FCFC5C5C9494:#C1C1F1F16161:#FEFEB2B25757:#8D8DE6E6F7F7:#C2C2A1A1FFFF:#BBBBF7F7EFEF:#F8F8F8F8F0F0"
gconftool-2 --set "/apps/gnome-terminal/profiles/Default/background_color" --type string "#1B1B1D1D1E1E"
gconftool-2 --set "/apps/gnome-terminal/profiles/Default/foreground_color" --type string "#F8F8F8F8F2F2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment