pivotal_workstation_cookbook 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. data/.gitignore +4 -0
  2. data/.gitmodules +3 -0
  3. data/.rvmrc +1 -0
  4. data/Gemfile +4 -0
  5. data/Rakefile +1 -0
  6. data/cookbooks/pivotal_workstation/.gitignore +2 -0
  7. data/cookbooks/pivotal_workstation/LICENSE.txt +21 -0
  8. data/cookbooks/pivotal_workstation/README.markdown +31 -0
  9. data/cookbooks/pivotal_workstation/attributes/chrome.rb +1 -0
  10. data/cookbooks/pivotal_workstation/attributes/firefox.rb +2 -0
  11. data/cookbooks/pivotal_workstation/attributes/fusion.rb +1 -0
  12. data/cookbooks/pivotal_workstation/attributes/git_pairs.rb +4 -0
  13. data/cookbooks/pivotal_workstation/attributes/git_projects.rb +3 -0
  14. data/cookbooks/pivotal_workstation/attributes/gitx.rb +2 -0
  15. data/cookbooks/pivotal_workstation/attributes/java.rb +1 -0
  16. data/cookbooks/pivotal_workstation/attributes/libreoffice.rb +3 -0
  17. data/cookbooks/pivotal_workstation/attributes/nginx.rb +11 -0
  18. data/cookbooks/pivotal_workstation/attributes/postgres.rb +3 -0
  19. data/cookbooks/pivotal_workstation/attributes/rubymine.rb +4 -0
  20. data/cookbooks/pivotal_workstation/attributes/rvm.rb +8 -0
  21. data/cookbooks/pivotal_workstation/attributes/skype.rb +1 -0
  22. data/cookbooks/pivotal_workstation/attributes/versions.rb +7 -0
  23. data/cookbooks/pivotal_workstation/libraries/bash_profile_include.rb +11 -0
  24. data/cookbooks/pivotal_workstation/libraries/brew.rb +31 -0
  25. data/cookbooks/pivotal_workstation/libraries/directories.rb +25 -0
  26. data/cookbooks/pivotal_workstation/libraries/marker.rb +42 -0
  27. data/cookbooks/pivotal_workstation/libraries/osx_app.rb +97 -0
  28. data/cookbooks/pivotal_workstation/libraries/rvm_ruby_install.rb +36 -0
  29. data/cookbooks/pivotal_workstation/libraries/user.rb +4 -0
  30. data/cookbooks/pivotal_workstation/libraries/version.rb +9 -0
  31. data/cookbooks/pivotal_workstation/recipes/ack.rb +1 -0
  32. data/cookbooks/pivotal_workstation/recipes/active_corners.rb +24 -0
  33. data/cookbooks/pivotal_workstation/recipes/bash_path_order.rb +13 -0
  34. data/cookbooks/pivotal_workstation/recipes/bash_profile-better_history.rb +3 -0
  35. data/cookbooks/pivotal_workstation/recipes/bash_profile-no_sudo_gem_install.rb +3 -0
  36. data/cookbooks/pivotal_workstation/recipes/bash_profile-ps1.rb +3 -0
  37. data/cookbooks/pivotal_workstation/recipes/bash_profile.rb +11 -0
  38. data/cookbooks/pivotal_workstation/recipes/chrome.rb +28 -0
  39. data/cookbooks/pivotal_workstation/recipes/defaults_fast_key_repeat_rate.rb +10 -0
  40. data/cookbooks/pivotal_workstation/recipes/disable_front_row.rb +4 -0
  41. data/cookbooks/pivotal_workstation/recipes/dock_preferences.rb +13 -0
  42. data/cookbooks/pivotal_workstation/recipes/ec2_api_tools.rb +3 -0
  43. data/cookbooks/pivotal_workstation/recipes/finder_display_full_path.rb +4 -0
  44. data/cookbooks/pivotal_workstation/recipes/firefox.rb +28 -0
  45. data/cookbooks/pivotal_workstation/recipes/fusion.rb +29 -0
  46. data/cookbooks/pivotal_workstation/recipes/gem_no_rdoc_no_ri.rb +7 -0
  47. data/cookbooks/pivotal_workstation/recipes/git.rb +8 -0
  48. data/cookbooks/pivotal_workstation/recipes/git_config_global_defaults.rb +71 -0
  49. data/cookbooks/pivotal_workstation/recipes/git_projects.rb +29 -0
  50. data/cookbooks/pivotal_workstation/recipes/git_scripts.rb +20 -0
  51. data/cookbooks/pivotal_workstation/recipes/gitx.rb +25 -0
  52. data/cookbooks/pivotal_workstation/recipes/global_environment_variables.rb +3 -0
  53. data/cookbooks/pivotal_workstation/recipes/homebrew.rb +27 -0
  54. data/cookbooks/pivotal_workstation/recipes/imagemagick.rb +3 -0
  55. data/cookbooks/pivotal_workstation/recipes/inputrc.rb +6 -0
  56. data/cookbooks/pivotal_workstation/recipes/iterm_set_defaults.rb +167 -0
  57. data/cookbooks/pivotal_workstation/recipes/java.rb +29 -0
  58. data/cookbooks/pivotal_workstation/recipes/joe.rb +3 -0
  59. data/cookbooks/pivotal_workstation/recipes/libreoffice.rb +28 -0
  60. data/cookbooks/pivotal_workstation/recipes/lion_basedev.rb +23 -0
  61. data/cookbooks/pivotal_workstation/recipes/mysql.rb +44 -0
  62. data/cookbooks/pivotal_workstation/recipes/nginx.rb +46 -0
  63. data/cookbooks/pivotal_workstation/recipes/osx_turn_on_locate.rb +8 -0
  64. data/cookbooks/pivotal_workstation/recipes/postgres.rb +71 -0
  65. data/cookbooks/pivotal_workstation/recipes/remove_garageband.rb +11 -0
  66. data/cookbooks/pivotal_workstation/recipes/rubymine.rb +30 -0
  67. data/cookbooks/pivotal_workstation/recipes/rubymine_preferences_pivotal.rb +36 -0
  68. data/cookbooks/pivotal_workstation/recipes/rvm.rb +58 -0
  69. data/cookbooks/pivotal_workstation/recipes/safari_preferences.rb +4 -0
  70. data/cookbooks/pivotal_workstation/recipes/screen_sharing_on.rb +16 -0
  71. data/cookbooks/pivotal_workstation/recipes/selenium_webdriver.rb +24 -0
  72. data/cookbooks/pivotal_workstation/recipes/set_finder_show_hd_on_desktop.rb +4 -0
  73. data/cookbooks/pivotal_workstation/recipes/set_multitouch_preferences.rb +9 -0
  74. data/cookbooks/pivotal_workstation/recipes/set_ntp_server.rb +3 -0
  75. data/cookbooks/pivotal_workstation/recipes/set_screensaver_preferences.rb +21 -0
  76. data/cookbooks/pivotal_workstation/recipes/size_up.rb +18 -0
  77. data/cookbooks/pivotal_workstation/recipes/skype.rb +28 -0
  78. data/cookbooks/pivotal_workstation/recipes/ssh_copy_id.rb +3 -0
  79. data/cookbooks/pivotal_workstation/recipes/sshd_on.rb +16 -0
  80. data/cookbooks/pivotal_workstation/recipes/ssl_certificate.rb +50 -0
  81. data/cookbooks/pivotal_workstation/recipes/terminal_preferences.rb +9 -0
  82. data/cookbooks/pivotal_workstation/recipes/textmate.rb +24 -0
  83. data/cookbooks/pivotal_workstation/recipes/textmate_plugins.rb +31 -0
  84. data/cookbooks/pivotal_workstation/recipes/textmate_set_defaults.rb +84 -0
  85. data/cookbooks/pivotal_workstation/recipes/user_owns_usr_local.rb +8 -0
  86. data/cookbooks/pivotal_workstation/recipes/vim.rb +35 -0
  87. data/cookbooks/pivotal_workstation/recipes/workspace_directory.rb +5 -0
  88. data/cookbooks/pivotal_workstation/templates/default/bash_profile-better_history.sh.erb +4 -0
  89. data/cookbooks/pivotal_workstation/templates/default/bash_profile-ec2_tools.sh.erb +5 -0
  90. data/cookbooks/pivotal_workstation/templates/default/bash_profile-no_sudo_gem_install.sh.erb +2 -0
  91. data/cookbooks/pivotal_workstation/templates/default/bash_profile-ps1.sh.erb +26 -0
  92. data/cookbooks/pivotal_workstation/templates/default/bash_profile-rvm.sh.erb +1 -0
  93. data/cookbooks/pivotal_workstation/templates/default/bash_profile.erb +6 -0
  94. data/cookbooks/pivotal_workstation/templates/default/git_scripts_pairs.erb +10 -0
  95. data/cookbooks/pivotal_workstation/templates/default/inputrc.erb +10 -0
  96. data/cookbooks/pivotal_workstation/templates/default/launchd.conf.erb +6 -0
  97. data/cookbooks/pivotal_workstation/templates/default/nginx.conf.erb +79 -0
  98. data/cookbooks/pivotal_workstation/templates/default/ntp.conf.erb +2 -0
  99. data/cookbooks/pivotal_workstation/templates/default/org.nginx.nginx.plist.erb +22 -0
  100. data/lib/pivotal_workstation_cookbook.rb +4 -0
  101. data/pivotal_workstation.gemspec +19 -0
  102. metadata +168 -0
@@ -0,0 +1,13 @@
1
+ run_unless_marker_file_exists("bash_path_order") do
2
+ ruby_block "put /usr/local/bin first in path" do
3
+ block do
4
+ new_contents = ""
5
+ File.open("/etc/paths", "r") do |file|
6
+ new_contents = "/usr/local/bin\n"+file.read.gsub("/usr/local/bin\n", "")
7
+ end
8
+ File.open("/etc/paths", "w") do |file|
9
+ file.write(new_contents)
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,3 @@
1
+ include_recipe "pivotal_workstation::bash_profile"
2
+
3
+ bash_profile_include("better_history")
@@ -0,0 +1,3 @@
1
+ include_recipe "pivotal_workstation::bash_profile"
2
+
3
+ bash_profile_include("no_sudo_gem_install")
@@ -0,0 +1,3 @@
1
+ include_recipe "pivotal_workstation::bash_profile"
2
+
3
+ bash_profile_include("ps1")
@@ -0,0 +1,11 @@
1
+ ::BASH_INCLUDES_DIRNAME = ".bash_profile_includes"
2
+ ::BASH_INCLUDES_SUBDIR = File.expand_path("#{WS_HOME}/.bash_profile_includes")
3
+
4
+ directory BASH_INCLUDES_SUBDIR do
5
+ owner WS_USER
6
+ end
7
+
8
+ template "#{WS_HOME}/.bash_profile" do
9
+ owner WS_USER
10
+ source "bash_profile.erb"
11
+ end
@@ -0,0 +1,28 @@
1
+ unless File.exists?("/Applications/Google Chrome.app")
2
+
3
+ remote_file "/tmp/chrome.dmg" do
4
+ source node["chrome_download_uri"]
5
+ mode "0644"
6
+ end
7
+
8
+ execute "mount chrome dmg" do
9
+ command "hdid /tmp/chrome.dmg"
10
+ user WS_USER
11
+ end
12
+
13
+ execute "copy chrome to /Applications" do
14
+ command "cp -rf /Volumes/Google\\ Chrome/Google\\ Chrome.app /Applications/"
15
+ user WS_USER
16
+ end
17
+
18
+ execute "unmount dmg" do
19
+ command "hdiutil detach /Volumes/Google\\ Chrome"
20
+ user WS_USER
21
+ end
22
+
23
+ ruby_block "test to see if Chrome was installed" do
24
+ block do
25
+ raise "Chrome install failed" unless File.exists?("/Applications/Google Chrome.app")
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,10 @@
1
+ execute "set key repeat rate to fast" do
2
+ command "defaults write ~/Library/Preferences/.GlobalPreferences KeyRepeat -int 2"
3
+ user WS_USER
4
+ end
5
+
6
+ execute "set key initial repeat delay to short" do
7
+ command "defaults write ~/Library/Preferences/.GlobalPreferences InitialKeyRepeat -int 15"
8
+ user WS_USER
9
+ end
10
+
@@ -0,0 +1,4 @@
1
+ execute "move front row out of the way" do
2
+ command "mv /System/Library/CoreServices/Front\\ Row.app /System/Library/CoreServices/Front_Row_disabled.app"
3
+ not_if { File.exists?("/System/Library/CoreServices/Front_Row_disabled.app") }
4
+ end
@@ -0,0 +1,13 @@
1
+ execute "set dock to be on left" do
2
+ command "defaults write com.apple.dock orientation -string left"
3
+ user WS_USER
4
+ end
5
+
6
+ execute "set dock to autohide" do
7
+ command "defaults write com.apple.dock autohide -boolean true"
8
+ user WS_USER
9
+ end
10
+
11
+ execute "relaunch dock" do
12
+ command "killall Dock"
13
+ end
@@ -0,0 +1,3 @@
1
+ brew_install "ec2-api-tools"
2
+
3
+ bash_profile_include("ec2_tools")
@@ -0,0 +1,4 @@
1
+ execute "set finder to display full path in title bar" do
2
+ command "defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES"
3
+ user WS_USER
4
+ end
@@ -0,0 +1,28 @@
1
+ unless File.exists?(node["firefox_app_path"])
2
+
3
+ remote_file "/tmp/firefox.dmg" do
4
+ source node["firefox_download_uri"]
5
+ mode "0644"
6
+ end
7
+
8
+ execute "mount firefox dmg" do
9
+ command "hdid /tmp/firefox.dmg"
10
+ user WS_USER
11
+ end
12
+
13
+ execute "copy firefox to /Applications" do
14
+ command "cp -rf /Volumes/Firefox/Firefox.app #{Regexp.escape(node["firefox_app_path"])}"
15
+ user WS_USER
16
+ end
17
+
18
+ execute "unmount dmg" do
19
+ command "hdiutil detach /Volumes/Firefox"
20
+ user WS_USER
21
+ end
22
+
23
+ ruby_block "test to see if Firefox was installed" do
24
+ block do
25
+ raise "Firefox install failed" unless File.exists?(node["firefox_app_path"])
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,29 @@
1
+ `pkgutil --pkgs=com.vmware.fusion.application`
2
+ if $? != 0
3
+
4
+ remote_file "/tmp/fusion.dmg" do
5
+ source node["fusion_download_uri"]
6
+ mode "0644"
7
+ end
8
+
9
+ execute "mount fusion dmg" do
10
+ command "hdid /tmp/fusion.dmg"
11
+ user WS_USER
12
+ end
13
+
14
+ execute "intall fusion" do
15
+ command "installer -pkg /Volumes/VMware\\ Fusion/Install\\ VMware\\ Fusion.app/Contents/Resources/Install\\ VMware\\ Fusion.mpkg -target /"
16
+ end
17
+
18
+ execute "unmount dmg" do
19
+ command "hdiutil detach /Volumes/VMware\\ Fusion/Install\\ VMware\\ Fusion.app"
20
+ user WS_USER
21
+ end
22
+
23
+ ruby_block "test to see if fusion was installed" do
24
+ block do
25
+ `pkgutil --pkgs=com.vmware.fusion.application`
26
+ raise "Fusion install failed" if $? != 0
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,7 @@
1
+ file "/etc/gemrc" do
2
+ owner "root"
3
+ group "wheel"
4
+ mode "0644"
5
+ action :create
6
+ content "install: --no-rdoc --no-ri\nupdate: --no-rdoc --no-ri\n"
7
+ end
@@ -0,0 +1,8 @@
1
+ unless system("git --version | grep 'git version' > /dev/null")
2
+ include_recipe "pivotal_workstation::homebrew"
3
+
4
+ execute "brew install git" do
5
+ user WS_USER
6
+ command "brew install git"
7
+ end
8
+ end
@@ -0,0 +1,71 @@
1
+ include_recipe "pivotal_workstation::git"
2
+
3
+ execute "set alias st=status" do
4
+ command "git config --global alias.st status"
5
+ user WS_USER
6
+ end
7
+
8
+ execute "set alias di=diff" do
9
+ command "git config --global alias.di diff"
10
+ user WS_USER
11
+ end
12
+
13
+ execute "set alias co=checkout" do
14
+ command "git config --global alias.co checkout"
15
+ user WS_USER
16
+ end
17
+
18
+ execute "set alias ci=commit" do
19
+ command "git config --global alias.ci commit"
20
+ user WS_USER
21
+ end
22
+
23
+ execute "set alias br=branch" do
24
+ command "git config --global alias.br branch"
25
+ user WS_USER
26
+ end
27
+
28
+ execute "set alias sta=stash" do
29
+ command "git config --global alias.sta stash"
30
+ user WS_USER
31
+ end
32
+
33
+ execute "set alias llog=log --date=local" do
34
+ command "git config --global alias.llog log --date=local"
35
+ user WS_USER
36
+ end
37
+
38
+ execute "set apply whitespace=nowarn" do
39
+ command "git config --global apply.whitespace nowarn"
40
+ user WS_USER
41
+ end
42
+
43
+ execute "set color branch=auto" do
44
+ command "git config --global color.branch auto"
45
+ user WS_USER
46
+ end
47
+
48
+ execute "set color diff=auto" do
49
+ command "git config --global color.diff auto"
50
+ user WS_USER
51
+ end
52
+
53
+ execute "set color interactive=auto" do
54
+ command "git config --global color.interactive auto"
55
+ user WS_USER
56
+ end
57
+
58
+ execute "set color status=auto" do
59
+ command "git config --global color.status auto"
60
+ user WS_USER
61
+ end
62
+
63
+ execute "set color ui=auto" do
64
+ command "git config --global color.ui auto"
65
+ user WS_USER
66
+ end
67
+
68
+ execute "set branch autosetupmerge=true" do
69
+ command "git config --global branch.autosetupmerge true"
70
+ user WS_USER
71
+ end
@@ -0,0 +1,29 @@
1
+ include_recipe "pivotal_workstation::workspace_directory"
2
+
3
+ node.git_projects.each do |repo_name, repo_address|
4
+ execute "clone #{repo_name}" do
5
+ command "git clone #{repo_address} #{repo_name}"
6
+ user WS_USER
7
+ cwd "#{WS_HOME}/workspace/"
8
+ not_if { ::File.exists?("#{WS_HOME}/workspace/#{repo_name}") }
9
+ end
10
+
11
+ execute "track origin master" do
12
+ command "git branch --set-upstream master origin/master"
13
+ cwd "#{WS_HOME}/workspace/#{repo_name}"
14
+ user WS_USER
15
+ end
16
+
17
+ execute "git submodule init for #{repo_name}" do
18
+ command "git submodule init"
19
+ cwd "#{WS_HOME}/workspace/#{repo_name}"
20
+ user WS_USER
21
+ end
22
+
23
+ execute "git submodule update for #{repo_name}" do
24
+ command "git submodule update"
25
+ cwd "#{WS_HOME}/workspace/#{repo_name}"
26
+ user WS_USER
27
+ end
28
+ end
29
+
@@ -0,0 +1,20 @@
1
+ include_recipe "pivotal_workstation::user_owns_usr_local"
2
+
3
+ if(`which git-pair`.empty?)
4
+ execute "put git-scripts in /usr/local/bin" do
5
+ command "cd /usr/local/bin && curl -L http://github.com/pivotal/git_scripts/tarball/master | gunzip | tar xvf - --strip=2"
6
+ user WS_USER
7
+ end
8
+
9
+ template "#{WS_HOME}/.pairs" do
10
+ owner WS_USER
11
+ source "git_scripts_pairs.erb"
12
+ end
13
+ end
14
+
15
+ ruby_block "test that git pair works" do
16
+ block do
17
+ raise "git pair doesn't work" if `which git-pair`.empty?
18
+ end
19
+ end
20
+
@@ -0,0 +1,25 @@
1
+ GITX_PATH = "/Applications/GitX.app"
2
+
3
+ unless File.exists?(GITX_PATH)
4
+
5
+ execute "download GitX to temp dir" do
6
+ command %'/usr/bin/curl -o /tmp/gitx.zip #{node["gitx_download_location"]}'
7
+ user WS_USER
8
+ end
9
+
10
+ execute "unzip gitx" do
11
+ command "unzip /tmp/gitx.zip -d /tmp/"
12
+ user WS_USER
13
+ end
14
+
15
+ execute "copy gitx to /Applications" do
16
+ command "cp -rf /tmp/GitX.app #{GITX_PATH}"
17
+ user WS_USER
18
+ end
19
+
20
+ ruby_block "test to see if GitX was installed" do
21
+ block do
22
+ raise "GitX was not installed" unless File.exists?(GITX_PATH)
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,3 @@
1
+ template "/etc/launchd.conf" do
2
+ source "launchd.conf.erb"
3
+ end
@@ -0,0 +1,27 @@
1
+ include_recipe "pivotal_workstation::user_owns_usr_local"
2
+
3
+ homebrew_git_revision_hash = version_string_for("homebrew")
4
+
5
+ if (`which brew`.empty?)
6
+ git "/tmp/homebrew" do
7
+ repository "https://github.com/mxcl/homebrew.git"
8
+ revision homebrew_git_revision_hash
9
+ destination "/tmp/homebrew"
10
+ action :sync
11
+ user WS_USER
12
+ end
13
+
14
+ execute "Copying homebrew's .git to /usr/local" do
15
+ command "rsync -axSH /tmp/homebrew/ /usr/local/"
16
+ user WS_USER
17
+ end
18
+ end
19
+
20
+ ruby_block "Check that homebrew is running & working" do
21
+ block do
22
+ `brew --version`
23
+ if $? != 0
24
+ raise "Couldn't find brew"
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,3 @@
1
+ include_recipe "pivotal_workstation::homebrew"
2
+
3
+ brew_install "imagemagick"
@@ -0,0 +1,6 @@
1
+ inputrc_location = "#{WS_HOME}/.inputrc"
2
+
3
+ template inputrc_location do
4
+ owner WS_USER
5
+ source "inputrc.erb"
6
+ end
@@ -0,0 +1,167 @@
1
+ execute "set iterm default terminal settings" do
2
+ command %$defaults write ~/Library/Preferences/net.sourceforge.iTerm Terminals -dict-add Default '{
3
+ "Auto Close" = 1;
4
+ Blink = 0;
5
+ "Default Profile" = Yes;
6
+ "Double Width" = 1;
7
+ Encoding = 4;
8
+ "Idle Char" = 0;
9
+ Scrollback = 60000;
10
+ "Send Idle Char" = 0;
11
+ "Silence Bell" = 1;
12
+ "Term Type" = xterm;
13
+ }'
14
+ $
15
+ user WS_USER
16
+ end
17
+
18
+ execute "use the darm background" do
19
+ command %$defaults write ~/Library/Preferences/net.sourceforge.iTerm Bookmarks -dict-add Entries ' (
20
+ {
21
+ Data = {
22
+ Command = "login -fp #{WS_USER}";
23
+ "Default Bookmark" = Yes;
24
+ Description = "login -fp #{WS_USER}";
25
+ "Display Profile" = "Dark Background";
26
+ "Keyboard Profile" = Global;
27
+ Name = Default;
28
+ Shortcut = "";
29
+ "Terminal Profile" = Default;
30
+ "Working Directory" = "/Users/#{WS_USER}";
31
+ };
32
+ Entries = (
33
+ );
34
+ }
35
+ )'$
36
+ user WS_USER
37
+ end
38
+
39
+ execute "set the colors" do
40
+ command %$defaults write ~/Library/Preferences/net.sourceforge.iTerm Displays -dict-add "Dark Background" '{
41
+ "Ansi 0 Color" = {
42
+ "Blue Component" = 0;
43
+ "Green Component" = 0;
44
+ "Red Component" = 0;
45
+ };
46
+ "Ansi 1 Color" = {
47
+ "Blue Component" = 0;
48
+ "Green Component" = 0;
49
+ "Red Component" = "0.7333333492279053";
50
+ };
51
+ "Ansi 10 Color" = {
52
+ "Blue Component" = "0.3333333432674408";
53
+ "Green Component" = 1;
54
+ "Red Component" = "0.3333333432674408";
55
+ };
56
+ "Ansi 11 Color" = {
57
+ "Blue Component" = "0.3333333432674408";
58
+ "Green Component" = 1;
59
+ "Red Component" = 1;
60
+ };
61
+ "Ansi 12 Color" = {
62
+ "Blue Component" = 1;
63
+ "Green Component" = "0.3333333432674408";
64
+ "Red Component" = "0.3333333432674408";
65
+ };
66
+ "Ansi 13 Color" = {
67
+ "Blue Component" = 1;
68
+ "Green Component" = "0.3333333432674408";
69
+ "Red Component" = 1;
70
+ };
71
+ "Ansi 14 Color" = {
72
+ "Blue Component" = 1;
73
+ "Green Component" = 1;
74
+ "Red Component" = "0.3333333432674408";
75
+ };
76
+ "Ansi 15 Color" = {
77
+ "Blue Component" = 1;
78
+ "Green Component" = 1;
79
+ "Red Component" = 1;
80
+ };
81
+ "Ansi 2 Color" = {
82
+ "Blue Component" = 0;
83
+ "Green Component" = "0.7333333492279053";
84
+ "Red Component" = 0;
85
+ };
86
+ "Ansi 3 Color" = {
87
+ "Blue Component" = 0;
88
+ "Green Component" = "0.7333333492279053";
89
+ "Red Component" = "0.7333333492279053";
90
+ };
91
+ "Ansi 4 Color" = {
92
+ "Blue Component" = "0.7333333492279053";
93
+ "Green Component" = 0;
94
+ "Red Component" = 0;
95
+ };
96
+ "Ansi 5 Color" = {
97
+ "Blue Component" = "0.7333333492279053";
98
+ "Green Component" = 0;
99
+ "Red Component" = "0.7333333492279053";
100
+ };
101
+ "Ansi 6 Color" = {
102
+ "Blue Component" = "0.7333333492279053";
103
+ "Green Component" = "0.7333333492279053";
104
+ "Red Component" = 0;
105
+ };
106
+ "Ansi 7 Color" = {
107
+ "Blue Component" = "0.7333333492279053";
108
+ "Green Component" = "0.7333333492279053";
109
+ "Red Component" = "0.7333333492279053";
110
+ };
111
+ "Ansi 8 Color" = {
112
+ "Blue Component" = "0.3333333432674408";
113
+ "Green Component" = "0.3333333432674408";
114
+ "Red Component" = "0.3333333432674408";
115
+ };
116
+ "Ansi 9 Color" = {
117
+ "Blue Component" = "0.3333333432674408";
118
+ "Green Component" = "0.3333333432674408";
119
+ "Red Component" = 1;
120
+ };
121
+ "Anti Alias" = 1;
122
+ "Background Color" = {
123
+ "Blue Component" = 0;
124
+ "Green Component" = 0;
125
+ "Red Component" = 0;
126
+ };
127
+ "Bold Color" = {
128
+ "Blue Component" = "0.4901960784313725";
129
+ "Green Component" = "0.4901960784313725";
130
+ "Red Component" = 1;
131
+ };
132
+ Columns = 80;
133
+ "Cursor Color" = {
134
+ "Blue Component" = "0.7333333492279053";
135
+ "Green Component" = "0.7333333492279053";
136
+ "Red Component" = "0.7333333492279053";
137
+ };
138
+ "Cursor Text Color" = {
139
+ "Blue Component" = 1;
140
+ "Green Component" = 1;
141
+ "Red Component" = 1;
142
+ };
143
+ "Disable Bold" = 0;
144
+ Font = "Monaco 12";
145
+ "Foreground Color" = {
146
+ "Blue Component" = "0.7333333492279053";
147
+ "Green Component" = "0.7333333492279053";
148
+ "Red Component" = "0.7333333492279053";
149
+ };
150
+ "Horizontal Character Spacing" = 1;
151
+ NAFont = "Monaco 12";
152
+ Rows = 24;
153
+ "Selected Text Color" = {
154
+ "Blue Component" = 0;
155
+ "Green Component" = 0;
156
+ "Red Component" = 0;
157
+ };
158
+ "Selection Color" = {
159
+ "Blue Component" = 1;
160
+ "Green Component" = "0.8353000283241272";
161
+ "Red Component" = "0.7098000049591064";
162
+ };
163
+ Transparency = 0;
164
+ "Vertical Character Spacing" = 1;
165
+ }'$
166
+ user WS_USER
167
+ end