Skip to content

Instantly share code, notes, and snippets.

@afgomez
Created June 25, 2013 09:24
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save afgomez/5857159 to your computer and use it in GitHub Desktop.
Save afgomez/5857159 to your computer and use it in GitHub Desktop.
function to change iTerm2 color profile from the terminal
#!/bin/bash
# Change the iterm2 profile programatically
function iterm_profile {
if [[ -z $1 ]]; then
profile="Default"
else
profile=$1
fi
echo -e "\033]50;SetProfile=$profile\a"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment