This file contains hidden or 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
global favThemes | |
set favThemes to {"Basic", "Pro Blue", "Pro Mint", "Pro Plum", "Pro Red", "Pro Gold", "Pro"} | |
tell application "Terminal" | |
# Get current settings | |
set theme to the name of the current settings of the selected tab of the front window | |
set i to my index_of(theme) | |
# Find next settings | |
set next to (i mod (count of favThemes) + 1) |
NewerOlder