From fae9109e63d1f76579d32fe0cd52d0c6eb77e246 Mon Sep 17 00:00:00 2001 From: willemml Date: Thu, 2 Feb 2023 10:04:10 -0800 Subject: [PATCH] add finder and nsglobaldomain config for darwin --- .gitignore | 2 + darwin.nix | 11 - apps.nix => darwin/apps.nix | 0 darwin/default.nix | 29 + darwin/finder.nix | 147 ++++ darwin/iterm2.nix | 285 ++++++++ launchd.nix => darwin/launchd.nix | 0 home.nix | 2 +- iterm2.nix | 1055 ----------------------------- 9 files changed, 464 insertions(+), 1067 deletions(-) create mode 100644 .gitignore delete mode 100644 darwin.nix rename apps.nix => darwin/apps.nix (100%) create mode 100644 darwin/default.nix create mode 100644 darwin/finder.nix create mode 100644 darwin/iterm2.nix rename launchd.nix => darwin/launchd.nix (100%) delete mode 100644 iterm2.nix diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d0836c8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +.\#* \ No newline at end of file diff --git a/darwin.nix b/darwin.nix deleted file mode 100644 index 48d85f3..0000000 --- a/darwin.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ config, pkgs, lib, inputs, ... }: - -{ - imports = [ ./launchd.nix ./apps.nix ]; - - targets.darwin = { - defaults = { - "com.googlecode.iterm2" = import ./iterm2.nix; - }; - }; -} diff --git a/apps.nix b/darwin/apps.nix similarity index 100% rename from apps.nix rename to darwin/apps.nix diff --git a/darwin/default.nix b/darwin/default.nix new file mode 100644 index 0000000..662721b --- /dev/null +++ b/darwin/default.nix @@ -0,0 +1,29 @@ +{ config, pkgs, lib, inputs, ... }: + +{ + imports = [ ./launchd.nix ./apps.nix ]; + + targets.darwin = { + defaults = { + "com.googlecode.iterm2" = import ./iterm2.nix; + "com.apple.finder" = import ./finder.nix; + NSGlobalDomain = { + AppleMeasurementUnits = "Centimeters"; + AppleLocale = "en_CA"; + AppleLanguages = [ "en-CA" ]; + AppleMetricUnits = true; + AppleTemperatureUnit = "Celsius"; + NSAutomaticCapitalizationEnabled = false; + NSAutomaticDashSubstitutionEnabled = false; + NSAutomaticPeriodSubstitutionEnabled = false; + NSAutomaticQuoteSubstitutionEnabled = false; + NSAutomaticSpellingCorrectionEnabled = false; + }; + "com.apple.Safari" = { + AutoOpenSafeDownloads = false; + IncludeDevelopMenu = true; + }; + }; + currentHostDefaults."com.apple.controlcenter".BatteryShowPercentage = true; + }; +} diff --git a/darwin/finder.nix b/darwin/finder.nix new file mode 100644 index 0000000..9663657 --- /dev/null +++ b/darwin/finder.nix @@ -0,0 +1,147 @@ +let + columnSettings = { + name = { + visible = true; + width = 300; + index = 1; + }; + dateModified = { + visible = true; + width = 150; + index = 2; + }; + dateCreated = { + visible = true; + width = 150; + index = 3; + }; + size = { + visible = true; + index = 4; + width = 100; + }; + dateLastOpened = { + visible = true; + width = 150; + index = 5; + }; + kind = { + visible = true; + width = 100; + index = 6; + }; + comments = { + visible = false; + width = 200; + index = 7; + }; + label = { + visible = false; + width = 50; + index = 8; + }; + version = { + visible = false; + width = 50; + index = 9; + }; + }; + + listviewsettings = { + calculateAllSizes = true; + showIconPreview = true; + iconSize = 16; + textSize = 13; + sortColumn = "name"; + useRelativeDates = true; + viewOptionsVersion = 1; + }; + + default-view-settings = { + ExtendedListViewSettingsV2 = { + columns = builtins.sort (a: b: a.index < b.index) (map (name: + (name: value: { + identifier = "${name}"; + visible = value.visible; + width = value.width; + index = value.index; + }) + name columnSettings.${name}) (builtins.attrNames columnSettings)); + } // listviewsettings; + ListViewSettings = { + columns = columnSettings; + } // listviewsettings; + }; + + dvs-with-ws = { + WindowState = { + ContainerShowSidebar = true; + ShowStatusBar = true; + ShowSidebar = true; + ShowToolbar = true; + ShowTabView = true;}; + } // default-view-settings; +in +{ + ComputerViewSettings = dvs-with-ws; + + DesktopViewSettings = { + GroupBy = "Kind"; + }; + + FinderSpawnTab = false; + + FK_DefaultListViewSettingsV2 = default-view-settings.ExtendedListViewSettingsV2; + + FK_StandardViewSettings = { + SettingsType = "FK_StandardViewSettings"; + } // default-view-settings; + + FK_iCloudListViewSettingsV2 = default-view-settings.ExtendedListViewSettingsV2; + + FXArrangeGroupViewBy = "Name"; + + FXEnableRemoveFromICloudDriveWarning = false; + + FXICloudDriveDocuments = true; + + FXICloudDriveEnabled = true; + + FXPreferredGroupBy = "Kind"; + + GoToField = "~/Library/"; + + ICloudViewSettings = dvs-with-ws; + + NetworkViewSettings = dvs-with-ws; + + PackageViewSettings = dvs-with-ws; + + RecentsArrangeGroupViewBy = "Date Last Opened"; + + SearchViewSettings = dvs-with-ws; + + ShowExternalHardDrivesOnDesktop = false; + + ShowHardDrivesOnDesktop = false; + + ShowRemovableMediaOnDesktop = false; + + ShowSidebar = true; + + SidebarWidth = 135; + + SidebarZoneOrder1 = [ "icloud_drive" "favorites" "devices" "tags" ]; + + StandardViewSettings = { + SettingsType = "StandardViewSettings"; + } // default-view-settings; + + TrashViewSettings = dvs-with-ws; + + WarnOnEmptyTrash = false; + + _FXSortFoldersFirst = true; + + _FXSortFoldersFirstOnDesktop = true; +} diff --git a/darwin/iterm2.nix b/darwin/iterm2.nix new file mode 100644 index 0000000..2151e3a --- /dev/null +++ b/darwin/iterm2.nix @@ -0,0 +1,285 @@ +let dracula_plus = { + "Ansi 0 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.172549; + "Color Space" = "sRGB"; + "Green Component" = 0.133333; + "Red Component" = 0.129412; + }; + "Ansi 1 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.333333; + "Color Space" = "sRGB"; + "Green Component" = 0.333333; + "Red Component" = 1; + }; + "Ansi 10 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.580392; + "Color Space" = "sRGB"; + "Green Component" = 1; + "Red Component" = 0.411765; + }; + "Ansi 11 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.419608; + "Color Space" = "sRGB"; + "Green Component" = 0.796078; + "Red Component" = 1; + }; + "Ansi 12 Color" = { + "Alpha Component" = 1; + "Blue Component" = 1; + "Color Space" = "sRGB"; + "Green Component" = 0.67451; + "Red Component" = 0.839216; + }; + "Ansi 13 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.87451; + "Color Space" = "sRGB"; + "Green Component" = 0.572549; + "Red Component" = 1; + }; + "Ansi 14 Color" = { + "Alpha Component" = 1; + "Blue Component" = 1; + "Color Space" = "sRGB"; + "Green Component" = 1; + "Red Component" = 0.643137; + }; + "Ansi 15 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.94902; + "Color Space" = "sRGB"; + "Green Component" = 0.972549; + "Red Component" = 0.972549; + }; + "Ansi 2 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.482353; + "Color Space" = "sRGB"; + "Green Component" = 0.980392; + "Red Component" = 0.313726; + }; + "Ansi 3 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.419608; + "Color Space" = "sRGB"; + "Green Component" = 0.796078; + "Red Component" = 1; + }; + "Ansi 4 Color" = { + "Alpha Component" = 1; + "Blue Component" = 1; + "Color Space" = "sRGB"; + "Green Component" = 0.666667; + "Red Component" = 0.509804; + }; + "Ansi 5 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.917647; + "Color Space" = "sRGB"; + "Green Component" = 0.572549; + "Red Component" = 0.780392; + }; + "Ansi 6 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.992157; + "Color Space" = "sRGB"; + "Green Component" = 0.913725; + "Red Component" = 0.545098; + }; + "Ansi 7 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.94902; + "Color Space" = "sRGB"; + "Green Component" = 0.972549; + "Red Component" = 0.972549; + }; + "Ansi 8 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.329412; + "Color Space" = "sRGB"; + "Green Component" = 0.329412; + "Red Component" = 0.329412; + }; + "Ansi 9 Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.431373; + "Color Space" = "sRGB"; + "Green Component" = 0.431373; + "Red Component" = 1; + }; + "Background Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.129412; + "Color Space" = "sRGB"; + "Green Component" = 0.129412; + "Red Component" = 0.129412; + }; + "Badge Color" = { + "Alpha Component" = 0.5; + "Blue Component" = 0.321569; + "Color Space" = "sRGB"; + "Green Component" = 0.258824; + "Red Component" = 0.231373; + }; + "Bold Color" = { + "Alpha Component" = 1; + "Blue Component" = 1; + "Color Space" = "sRGB"; + "Green Component" = 1; + "Red Component" = 0.999996; + }; + "Cursor Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.956863; + "Color Space" = "sRGB"; + "Green Component" = 0.937255; + "Red Component" = 0.92549; + }; + "Cursor Guide Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.211765; + "Color Space" = "sRGB"; + "Green Component" = 0.219608; + "Red Component" = 0.235294; + }; + "Cursor Text Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.156863; + "Color Space" = "sRGB"; + "Green Component" = 0.156863; + "Red Component" = 0.156863; + }; + "Foreground Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.94902; + "Color Space" = "sRGB"; + "Green Component" = 0.972549; + "Red Component" = 0.972549; + }; + "Link Color" = { + "Alpha Component" = 1; + "Blue Component" = 1; + "Color Space" = "sRGB"; + "Green Component" = 1; + "Red Component" = 0.996078; + }; + "Selected Text Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.329412; + "Color Space" = "sRGB"; + "Green Component" = 0.329412; + "Red Component" = 0.329412; + }; + "Selection Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.94902; + "Color Space" = "sRGB"; + "Green Component" = 0.972549; + "Red Component" = 0.972549; + }; + "Tab Color" = { + "Alpha Component" = 1; + "Blue Component" = 0.321569; + "Color Space" = "sRGB"; + "Green Component" = 0.258824; + "Red Component" = 0.231373; + }; +}; +profile_defaults = { + "ASCII Anti Aliased" = true; + "Ambiguous Double Width" = false; + "BM Growl" = true; + "Background Image Location" = ""; + "Blinking Cursor" = false; + "Blur" = false; + "Character Encoding" = 4; + "Close Sessions On End" = true; + "Flashing Bell" = false; + "Horizontal Spacing" = 1; + "Idle Code" = 0; + "Jobs to Ignore" = [ "rlogin" "ssh" "slogin" "telnet" ]; + "Keyboard Map" = null; + "Mouse Reporting" = true; + "Non Ascii Font" = "Monaco 12"; + "Non-ASCII Anti Aliased" = true; + "Normal Font" = "MesloLGS-NF-Regular 12"; + "Option Key Sends" = 2; + "Prompt Before Closing 2" = false; + "Right Option Key Sends" = 0; + "Scrollback Lines" = 0; + "Send Code When Idle" = false; + "Silence Bell" = false; + "Sync Title" = false; + "Terminal Type" = "xterm-256color"; + "Transparency" = 0; + "Unlimited Scrollback" = true; + "Use Bold Font" = true; + "Use Bright Bold" = true; + "Use Italic Font" = true; + "Use Non-ASCII Font" = false; + "Vertical Spacing" = 1; + "Visual Bell" = true; + "Window Type" = 0; +} // dracula_plus; +in +{ + "AlternateMouseScroll" = true; + "Default Bookmark Guid" = "30FFD0AB-B2EB-4635-9469-D089C1D9E106"; + "HotkeyMigratedFromSingleToMulti" = true; + "LeftCommand" = 7; + "LeftOption" = 2; + "ShowFullScreenTabBar" = false; + "SoundForEsc" = false; + "SUEnableAutomaticChecks" = false; + "SUHasLaunchedBefore" = true; + "VisualIndicatorForEsc" = false; + "New Bookmarks" = [ + ({ + "Columns" = 120; + "Command" = ""; + "Custom Command" = "No"; + "Custom Directory" = "No"; + "Default Bookmark" = "Yes"; + "Description" = "Default"; + "Guid" = "30FFD0AB-B2EB-4635-9469-D089C1D9E106"; + "Name" = "Primary"; + "Rows" = 30; + "Screen" = -1; + "Tags" = [ ]; + "Working Directory" = "/Users/willem"; + } // profile_defaults) + ({ + "Columns" = 120; + "Command" = ""; + "Custom Command" = "No"; + "Custom Directory" = "No"; + "Default Bookmark" = "No"; + "Description" = "Default"; + "Disable Window Resizing" = true; + "Guid" = "00A17AC2-1885-4AE2-B941-A47A5D8C36B4"; + "Has Hotkey" = true; + "HotKey Activated By Modifier" = false; + "HotKey Alternate Shortcuts" = { }; + "HotKey Characters Ignoring Modifiers" = " "; + "HotKey Characters" = " "; + "HotKey Key Code" = 49; + "HotKey Modifier Activation" = 3; + "HotKey Modifier Flags" = 1048576; + "HotKey Window Animates" = false; + "HotKey Window AutoHides" = true; + "HotKey Window Dock Click Action" = 0; + "HotKey Window Floats" = true; + "HotKey Window Reopens On Activation" = false; + "Name" = "Hotkey Window"; + "Rows" = 25; + "Screen" = -1; + "Space" = -1; + "Tags" = [ ]; + "Working Directory" = "/Users/willem"; + } // profile_defaults) + ]; +} diff --git a/launchd.nix b/darwin/launchd.nix similarity index 100% rename from launchd.nix rename to darwin/launchd.nix diff --git a/home.nix b/home.nix index 2e74e54..a641c08 100644 --- a/home.nix +++ b/home.nix @@ -51,7 +51,7 @@ in { }; imports = - [ ./emacs.nix ./packages.nix ./programs.nix ./darwin.nix ]; + [ ./emacs.nix ./packages.nix ./programs.nix ./darwin ]; nixpkgs.config = { allowUnfree = true; diff --git a/iterm2.nix b/iterm2.nix deleted file mode 100644 index 35bc671..0000000 --- a/iterm2.nix +++ /dev/null @@ -1,1055 +0,0 @@ -{ - "AlternateMouseScroll" = true; - "Custom Color Presets" = { - "Dracula+" = { - "Ansi 0 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.172549; - "Color Space" = "sRGB"; - "Green Component" = 0.133333; - "Red Component" = 0.129412; - }; - "Ansi 1 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.333333; - "Color Space" = "sRGB"; - "Green Component" = 0.333333; - "Red Component" = 1; - }; - "Ansi 10 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.580392; - "Color Space" = "sRGB"; - "Green Component" = 1; - "Red Component" = 0.411765; - }; - "Ansi 11 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.419608; - "Color Space" = "sRGB"; - "Green Component" = 0.796078; - "Red Component" = 1; - }; - "Ansi 12 Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 0.67451; - "Red Component" = 0.839216; - }; - "Ansi 13 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.87451; - "Color Space" = "sRGB"; - "Green Component" = 0.572549; - "Red Component" = 1; - }; - "Ansi 14 Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 1; - "Red Component" = 0.643137; - }; - "Ansi 15 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.94902; - "Color Space" = "sRGB"; - "Green Component" = 0.972549; - "Red Component" = 0.972549; - }; - "Ansi 2 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.482353; - "Color Space" = "sRGB"; - "Green Component" = 0.980392; - "Red Component" = 0.313726; - }; - "Ansi 3 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.419608; - "Color Space" = "sRGB"; - "Green Component" = 0.796078; - "Red Component" = 1; - }; - "Ansi 4 Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 0.666667; - "Red Component" = 0.509804; - }; - "Ansi 5 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.917647; - "Color Space" = "sRGB"; - "Green Component" = 0.572549; - "Red Component" = 0.780392; - }; - "Ansi 6 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.992157; - "Color Space" = "sRGB"; - "Green Component" = 0.913725; - "Red Component" = 0.545098; - }; - "Ansi 7 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.94902; - "Color Space" = "sRGB"; - "Green Component" = 0.972549; - "Red Component" = 0.972549; - }; - "Ansi 8 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.329412; - "Color Space" = "sRGB"; - "Green Component" = 0.329412; - "Red Component" = 0.329412; - }; - "Ansi 9 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.431373; - "Color Space" = "sRGB"; - "Green Component" = 0.431373; - "Red Component" = 1; - }; - "Background Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.129412; - "Color Space" = "sRGB"; - "Green Component" = 0.129412; - "Red Component" = 0.129412; - }; - "Badge Color" = { - "Alpha Component" = 0.5; - "Blue Component" = 0.321569; - "Color Space" = "sRGB"; - "Green Component" = 0.258824; - "Red Component" = 0.231373; - }; - "Bold Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 1; - "Red Component" = 0.999996; - }; - "Cursor Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.956863; - "Color Space" = "sRGB"; - "Green Component" = 0.937255; - "Red Component" = 0.92549; - }; - "Cursor Guide Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.211765; - "Color Space" = "sRGB"; - "Green Component" = 0.219608; - "Red Component" = 0.235294; - }; - "Cursor Text Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.156863; - "Color Space" = "sRGB"; - "Green Component" = 0.156863; - "Red Component" = 0.156863; - }; - "Foreground Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.94902; - "Color Space" = "sRGB"; - "Green Component" = 0.972549; - "Red Component" = 0.972549; - }; - "Link Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 1; - "Red Component" = 0.996078; - }; - "Selected Text Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.329412; - "Color Space" = "sRGB"; - "Green Component" = 0.329412; - "Red Component" = 0.329412; - }; - "Selection Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.94902; - "Color Space" = "sRGB"; - "Green Component" = 0.972549; - "Red Component" = 0.972549; - }; - "Tab Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.321569; - "Color Space" = "sRGB"; - "Green Component" = 0.258824; - "Red Component" = 0.231373; - }; - }; - }; - "Default Bookmark Guid" = "30FFD0AB-B2EB-4635-9469-D089C1D9E106"; - "HapticFeedbackForEsc" = false; - "HotkeyMigratedFromSingleToMulti" = true; - "IRMemory" = 4; - "LeftCommand" = 7; - "LeftOption" = 2; - "New Bookmarks" = [ - { - "ASCII Anti Aliased" = true; - "Ambiguous Double Width" = false; - "Ansi 0 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.1725490242242813; - "Color Space" = "sRGB"; - "Green Component" = 0.1333333402872086; - "Red Component" = 0.1294117718935013; - }; - "Ansi 1 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.3333333432674408; - "Color Space" = "sRGB"; - "Green Component" = 0.3333333432674408; - "Red Component" = 1; - }; - "Ansi 10 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.5803921818733215; - "Color Space" = "sRGB"; - "Green Component" = 1; - "Red Component" = 0.4117647111415863; - }; - "Ansi 11 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.4196078479290009; - "Color Space" = "sRGB"; - "Green Component" = 0.7960784435272217; - "Red Component" = 1; - }; - "Ansi 12 Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 0.6745098233222961; - "Red Component" = 0.8392156958580017; - }; - "Ansi 13 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.8745098114013672; - "Color Space" = "sRGB"; - "Green Component" = 0.572549045085907; - "Red Component" = 1; - }; - "Ansi 14 Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 1; - "Red Component" = 0.6431372761726379; - }; - "Ansi 15 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.9490196108818054; - "Color Space" = "sRGB"; - "Green Component" = 0.9725490212440491; - "Red Component" = 0.9725490212440491; - }; - "Ansi 2 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.4823529422283173; - "Color Space" = "sRGB"; - "Green Component" = 0.9803921580314636; - "Red Component" = 0.3137255012989044; - }; - "Ansi 3 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.4196078479290009; - "Color Space" = "sRGB"; - "Green Component" = 0.7960784435272217; - "Red Component" = 1; - }; - "Ansi 4 Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 0.6666666865348816; - "Red Component" = 0.5098039507865906; - }; - "Ansi 5 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.9176470637321472; - "Color Space" = "sRGB"; - "Green Component" = 0.572549045085907; - "Red Component" = 0.7803921699523926; - }; - "Ansi 6 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.9921568632125854; - "Color Space" = "sRGB"; - "Green Component" = 0.9137254953384399; - "Red Component" = 0.545098066329956; - }; - "Ansi 7 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.9490196108818054; - "Color Space" = "sRGB"; - "Green Component" = 0.9725490212440491; - "Red Component" = 0.9725490212440491; - }; - "Ansi 8 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.3294117748737335; - "Color Space" = "sRGB"; - "Green Component" = 0.3294117748737335; - "Red Component" = 0.3294117748737335; - }; - "Ansi 9 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.4313725531101227; - "Color Space" = "sRGB"; - "Green Component" = 0.4313725531101227; - "Red Component" = 1; - }; - "BM Growl" = true; - "Background Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.1294117718935013; - "Color Space" = "sRGB"; - "Green Component" = 0.1294117718935013; - "Red Component" = 0.1294117718935013; - }; - "Background Image Location" = ""; - "Badge Color" = { - "Alpha Component" = 0.5; - "Blue Component" = 0.321568638086319; - "Color Space" = "sRGB"; - "Green Component" = 0.2588235437870026; - "Red Component" = 0.2313725501298904; - }; - "Blinking Cursor" = false; - "Blur" = false; - "Bold Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 1; - "Red Component" = 0.9999960064888; - }; - "Character Encoding" = 4; - "Close Sessions On End" = true; - "Columns" = 120; - "Command" = ""; - "Cursor Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.95686274766922; - "Color Space" = "sRGB"; - "Green Component" = 0.9372549057006836; - "Red Component" = 0.9254902005195618; - }; - "Cursor Guide Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.2117646932601929; - "Color Space" = "sRGB"; - "Green Component" = 0.2196078300476074; - "Red Component" = 0.2352941930294037; - }; - "Cursor Text Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.1568627059459686; - "Color Space" = "sRGB"; - "Green Component" = 0.1568627059459686; - "Red Component" = 0.156862735748291; - }; - "Custom Command" = "No"; - "Custom Directory" = "No"; - "Default Bookmark" = "No"; - "Description" = "Default"; - "Disable Window Resizing" = true; - "Flashing Bell" = false; - "Foreground Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.9490196108818054; - "Color Space" = "sRGB"; - "Green Component" = 0.9725490212440491; - "Red Component" = 0.9725490212440491; - }; - "Guid" = "30FFD0AB-B2EB-4635-9469-D089C1D9E106"; - "Horizontal Spacing" = 1; - "Idle Code" = 0; - "Jobs to Ignore" = [ "rlogin" "ssh" "slogin" "telnet" ]; - "Keyboard Map" = { - "0x2d-0x40000" = { - "Action" = 11; - "Text" = "0x1f"; - }; - "0x32-0x40000" = { - "Action" = 11; - "Text" = "0x00"; - }; - "0x33-0x40000" = { - "Action" = 11; - "Text" = "0x1b"; - }; - "0x34-0x40000" = { - "Action" = 11; - "Text" = "0x1c"; - }; - "0x35-0x40000" = { - "Action" = 11; - "Text" = "0x1d"; - }; - "0x36-0x40000" = { - "Action" = 11; - "Text" = "0x1e"; - }; - "0x37-0x40000" = { - "Action" = 11; - "Text" = "0x1f"; - }; - "0x38-0x40000" = { - "Action" = 11; - "Text" = "0x7f"; - }; - "0xf700-0x220000" = { - "Action" = 10; - "Text" = "[1;2A"; - }; - "0xf700-0x240000" = { - "Action" = 10; - "Text" = "[1;5A"; - }; - "0xf700-0x260000" = { - "Action" = 10; - "Text" = "[1;6A"; - }; - "0xf700-0x280000" = { - "Action" = 11; - "Text" = "0x1b 0x1b 0x5b 0x41"; - }; - "0xf701-0x220000" = { - "Action" = 10; - "Text" = "[1;2B"; - }; - "0xf701-0x240000" = { - "Action" = 10; - "Text" = "[1;5B"; - }; - "0xf701-0x260000" = { - "Action" = 10; - "Text" = "[1;6B"; - }; - "0xf701-0x280000" = { - "Action" = 11; - "Text" = "0x1b 0x1b 0x5b 0x42"; - }; - "0xf702-0x220000" = { - "Action" = 10; - "Text" = "[1;2D"; - }; - "0xf702-0x240000" = { - "Action" = 10; - "Text" = "[1;5D"; - }; - "0xf702-0x260000" = { - "Action" = 10; - "Text" = "[1;6D"; - }; - "0xf702-0x280000" = { - "Action" = 11; - "Text" = "0x1b 0x1b 0x5b 0x44"; - }; - "0xf703-0x220000" = { - "Action" = 10; - "Text" = "[1;2C"; - }; - "0xf703-0x240000" = { - "Action" = 10; - "Text" = "[1;5C"; - }; - "0xf703-0x260000" = { - "Action" = 10; - "Text" = "[1;6C"; - }; - "0xf703-0x280000" = { - "Action" = 11; - "Text" = "0x1b 0x1b 0x5b 0x43"; - }; - "0xf704-0x20000" = { - "Action" = 10; - "Text" = "[1;2P"; - }; - "0xf705-0x20000" = { - "Action" = 10; - "Text" = "[1;2Q"; - }; - "0xf706-0x20000" = { - "Action" = 10; - "Text" = "[1;2R"; - }; - "0xf707-0x20000" = { - "Action" = 10; - "Text" = "[1;2S"; - }; - "0xf708-0x20000" = { - "Action" = 10; - "Text" = "[15;2~"; - }; - "0xf709-0x20000" = { - "Action" = 10; - "Text" = "[17;2~"; - }; - "0xf70a-0x20000" = { - "Action" = 10; - "Text" = "[18;2~"; - }; - "0xf70b-0x20000" = { - "Action" = 10; - "Text" = "[19;2~"; - }; - "0xf70c-0x20000" = { - "Action" = 10; - "Text" = "[20;2~"; - }; - "0xf70d-0x20000" = { - "Action" = 10; - "Text" = "[21;2~"; - }; - "0xf70e-0x20000" = { - "Action" = 10; - "Text" = "[23;2~"; - }; - "0xf70f-0x20000" = { - "Action" = 10; - "Text" = "[24;2~"; - }; - "0xf729-0x20000" = { - "Action" = 10; - "Text" = "[1;2H"; - }; - "0xf729-0x40000" = { - "Action" = 10; - "Text" = "[1;5H"; - }; - "0xf72b-0x20000" = { - "Action" = 10; - "Text" = "[1;2F"; - }; - "0xf72b-0x40000" = { - "Action" = 10; - "Text" = "[1;5F"; - }; - }; - "Link Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 1; - "Red Component" = 0.9960784316062927; - }; - "Mouse Reporting" = true; - "Name" = "Default"; - "Non Ascii Font" = "Monaco 12"; - "Non-ASCII Anti Aliased" = true; - "Normal Font" = "MesloLGS-NF-Regular 12"; - "Option Key Sends" = 2; - "Prompt Before Closing 2" = false; - "Right Option Key Sends" = 0; - "Rows" = 30; - "Screen" = -1; - "Scrollback Lines" = 0; - "Selected Text Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.3294117748737335; - "Color Space" = "sRGB"; - "Green Component" = 0.3294117748737335; - "Red Component" = 0.3294117748737335; - }; - "Selection Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.9490196108818054; - "Color Space" = "sRGB"; - "Green Component" = 0.9725490212440491; - "Red Component" = 0.9725490212440491; - }; - "Send Code When Idle" = false; - "Shortcut" = ""; - "Silence Bell" = false; - "Sync Title" = false; - "Tab Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.3215686082839966; - "Color Space" = "sRGB"; - "Green Component" = 0.258823573589325; - "Red Component" = 0.2313725650310516; - }; - "Tags" = null; - - "Terminal Type" = "xterm-256color"; - "Transparency" = 0; - "Unlimited Scrollback" = true; - "Use Bold Font" = true; - "Use Bright Bold" = true; - "Use Italic Font" = true; - "Use Non-ASCII Font" = false; - "Vertical Spacing" = 1; - "Visual Bell" = true; - "Window Type" = 0; - "Working Directory" = "/Users/willem"; - } - { - "ASCII Anti Aliased" = true; - "Ambiguous Double Width" = false; - "Ansi 0 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.172549; - "Color Space" = "sRGB"; - "Green Component" = 0.133333; - "Red Component" = 0.129412; - }; - "Ansi 1 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.333333; - "Color Space" = "sRGB"; - "Green Component" = 0.333333; - "Red Component" = 1; - }; - "Ansi 10 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.580392; - "Color Space" = "sRGB"; - "Green Component" = 1; - "Red Component" = 0.411765; - }; - "Ansi 11 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.419608; - "Color Space" = "sRGB"; - "Green Component" = 0.796078; - "Red Component" = 1; - }; - "Ansi 12 Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 0.67451; - "Red Component" = 0.839216; - }; - "Ansi 13 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.87451; - "Color Space" = "sRGB"; - "Green Component" = 0.572549; - "Red Component" = 1; - }; - "Ansi 14 Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 1; - "Red Component" = 0.643137; - }; - "Ansi 15 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.94902; - "Color Space" = "sRGB"; - "Green Component" = 0.972549; - "Red Component" = 0.972549; - }; - "Ansi 2 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.482353; - "Color Space" = "sRGB"; - "Green Component" = 0.980392; - "Red Component" = 0.313726; - }; - "Ansi 3 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.419608; - "Color Space" = "sRGB"; - "Green Component" = 0.796078; - "Red Component" = 1; - }; - "Ansi 4 Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 0.666667; - "Red Component" = 0.509804; - }; - "Ansi 5 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.917647; - "Color Space" = "sRGB"; - "Green Component" = 0.572549; - "Red Component" = 0.780392; - }; - "Ansi 6 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.992157; - "Color Space" = "sRGB"; - "Green Component" = 0.913725; - "Red Component" = 0.545098; - }; - "Ansi 7 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.94902; - "Color Space" = "sRGB"; - "Green Component" = 0.972549; - "Red Component" = 0.972549; - }; - "Ansi 8 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.329412; - "Color Space" = "sRGB"; - "Green Component" = 0.329412; - "Red Component" = 0.329412; - }; - "Ansi 9 Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.431373; - "Color Space" = "sRGB"; - "Green Component" = 0.431373; - "Red Component" = 1; - }; - "BM Growl" = true; - "Background Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.129412; - "Color Space" = "sRGB"; - "Green Component" = 0.129412; - "Red Component" = 0.129412; - }; - "Background Image Location" = ""; - "Badge Color" = { - "Alpha Component" = 0.5; - "Blue Component" = 0.321569; - "Color Space" = "sRGB"; - "Green Component" = 0.258824; - "Red Component" = 0.231373; - }; - "Blend" = 0.5; - "Blinking Cursor" = false; - "Blur" = true; - "Blur Radius" = 2; - "Bold Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 1; - "Red Component" = 0.999996; - }; - "Character Encoding" = 4; - "Close Sessions On End" = true; - "Columns" = 120; - "Command" = ""; - "Cursor Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.956863; - "Color Space" = "sRGB"; - "Green Component" = 0.937255; - "Red Component" = 0.92549; - }; - "Cursor Guide Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.211765; - "Color Space" = "sRGB"; - "Green Component" = 0.219608; - "Red Component" = 0.235294; - }; - "Cursor Text Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.156863; - "Color Space" = "sRGB"; - "Green Component" = 0.156863; - "Red Component" = 0.156863; - }; - "Custom Command" = "No"; - "Custom Directory" = "No"; - "Default Bookmark" = "No"; - "Description" = "Default"; - "Disable Window Resizing" = true; - "Flashing Bell" = false; - "Foreground Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.94902; - "Color Space" = "sRGB"; - "Green Component" = 0.972549; - "Red Component" = 0.972549; - }; - "Guid" = "00A17AC2-1885-4AE2-B941-A47A5D8C36B4"; - "Has Hotkey" = true; - "Horizontal Spacing" = 1; - "HotKey Activated By Modifier" = false; - "HotKey Alternate Shortcuts" = { - "HotKey Characters" = " "; - "HotKey Characters Ignoring Modifiers" = " "; - "HotKey Key Code" = 49; - "HotKey Modifier Activation" = 3; - "HotKey Modifier Flags" = 1048576; - "HotKey Window Animates" = false; - "HotKey Window AutoHides" = true; - "HotKey Window Dock Click Action" = 0; - "HotKey Window Floats" = true; - "HotKey Window Reopens On Activation" = false; - "Idle Code" = 0; - "Initial Use Transparency" = true; - "Jobs to Ignore" = [ "rlogin" "ssh" "slogin" "telnet" ]; - "Keyboard Map" = { - "0x2d-0x40000" = { - "Action" = 11; - "Text" = "0x1f"; - }; - "0x32-0x40000" = { - "Action" = 11; - "Text" = "0x00"; - }; - "0x33-0x40000" = { - "Action" = 11; - "Text" = "0x1b"; - }; - "0x34-0x40000" = { - "Action" = 11; - "Text" = "0x1c"; - }; - "0x35-0x40000" = { - "Action" = 11; - "Text" = "0x1d"; - }; - "0x36-0x40000" = { - "Action" = 11; - "Text" = "0x1e"; - }; - "0x37-0x40000" = { - "Action" = 11; - "Text" = "0x1f"; - }; - "0x38-0x40000" = { - "Action" = 11; - "Text" = "0x7f"; - }; - "0x74-0x100000-0x0" = { - "Action" = 27; - "Label" = ""; - "Text" = "00A17AC2-1885-4AE2-B941-A47A5D8C36B4"; - "Version" = 1; - }; - "0xf700-0x220000" = { - "Action" = 10; - "Text" = "[1;2A"; - }; - "0xf700-0x240000" = { - "Action" = 10; - "Text" = "[1;5A"; - }; - "0xf700-0x260000" = { - "Action" = 10; - "Text" = "[1;6A"; - }; - "0xf700-0x280000" = { - "Action" = 11; - "Text" = "0x1b 0x1b 0x5b 0x41"; - }; - "0xf701-0x220000" = { - "Action" = 10; - "Text" = "[1;2B"; - }; - "0xf701-0x240000" = { - "Action" = 10; - "Text" = "[1;5B"; - }; - "0xf701-0x260000" = { - "Action" = 10; - "Text" = "[1;6B"; - }; - "0xf701-0x280000" = { - "Action" = 11; - "Text" = "0x1b 0x1b 0x5b 0x42"; - }; - "0xf702-0x220000" = { - "Action" = 10; - "Text" = "[1;2D"; - }; - "0xf702-0x240000" = { - "Action" = 10; - "Text" = "[1;5D"; - }; - "0xf702-0x260000" = { - "Action" = 10; - "Text" = "[1;6D"; - }; - "0xf702-0x280000" = { - "Action" = 11; - "Text" = "0x1b 0x1b 0x5b 0x44"; - }; - "0xf703-0x220000" = { - "Action" = 10; - "Text" = "[1;2C"; - }; - "0xf703-0x240000" = { - "Action" = 10; - "Text" = "[1;5C"; - }; - "0xf703-0x260000" = { - "Action" = 10; - "Text" = "[1;6C"; - }; - "0xf703-0x280000" = { - "Action" = 11; - "Text" = "0x1b 0x1b 0x5b 0x43"; - }; - "0xf704-0x20000" = { - "Action" = 10; - "Text" = "[1;2P"; - }; - "0xf705-0x20000" = { - "Action" = 10; - "Text" = "[1;2Q"; - }; - "0xf706-0x20000" = { - "Action" = 10; - "Text" = "[1;2R"; - }; - "0xf707-0x20000" = { - "Action" = 10; - "Text" = "[1;2S"; - }; - "0xf708-0x20000" = { - "Action" = 10; - "Text" = "[15;2~"; - }; - "0xf709-0x20000" = { - "Action" = 10; - "Text" = "[17;2~"; - }; - "0xf70a-0x20000" = { - "Action" = 10; - "Text" = "[18;2~"; - }; - "0xf70b-0x20000" = { - "Action" = 10; - "Text" = "[19;2~"; - }; - "0xf70c-0x20000" = { - "Action" = 10; - "Text" = "[20;2~"; - }; - "0xf70d-0x20000" = { - "Action" = 10; - "Text" = "[21;2~"; - }; - "0xf70e-0x20000" = { - "Action" = 10; - "Text" = "[23;2~"; - }; - "0xf70f-0x20000" = { - "Action" = 10; - "Text" = "[24;2~"; - }; - "0xf729-0x20000" = { - "Action" = 10; - "Text" = "[1;2H"; - }; - "0xf729-0x40000" = { - "Action" = 10; - "Text" = "[1;5H"; - }; - "0xf72b-0x20000" = { - "Action" = 10; - "Text" = "[1;2F"; - }; - "0xf72b-0x40000" = { - "Action" = 10; - "Text" = "[1;5F"; - }; - }; - "Link Color" = { - "Alpha Component" = 1; - "Blue Component" = 1; - "Color Space" = "sRGB"; - "Green Component" = 1; - "Red Component" = 0.996078; - }; - "Mouse Reporting" = true; - "Name" = "Hotkey Window"; - "Non Ascii Font" = "Monaco 12"; - "Non-ASCII Anti Aliased" = true; - "Normal Font" = "MesloLGS-NF-Regular 12"; - "Option Key Sends" = 2; - "Prompt Before Closing 2" = false; - "Right Option Key Sends" = 0; - "Rows" = 25; - "Screen" = -1; - "Scrollback Lines" = 0; - "Selected Text Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.329412; - "Color Space" = "sRGB"; - "Green Component" = 0.329412; - "Red Component" = 0.329412; - }; - "Selection Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.94902; - "Color Space" = "sRGB"; - "Green Component" = 0.972549; - "Red Component" = 0.972549; - }; - "Send Code When Idle" = false; - "Shortcut" = ""; - "Silence Bell" = false; - "Space" = -1; - "Sync Title" = false; - "Tab Color" = { - "Alpha Component" = 1; - "Blue Component" = 0.321569; - "Color Space" = "sRGB"; - "Green Component" = 0.258824; - "Red Component" = 0.231373; - }; - "Tags" = null; - - "Terminal Type" = "xterm-256color"; - "Transparency" = 0.1500997340425532; - "Unlimited Scrollback" = true; - "Use Bold Font" = true; - "Use Bright Bold" = true; - "Use Italic Font" = true; - "Use Non-ASCII Font" = false; - "Vertical Spacing" = 1; - "Visual Bell" = true; - "Window Type" = 2; - "Working Directory" = "/Users/willem"; - }; - } - ]; - "PMPrintingExpandedStateForPrint2" = false; - "PasteTabToStringTabStopSize" = 4; - "PointerActions" = { - "Button,1,1,," = { "Action" = "kContextMenuPointerAction"; }; - "Button,2,1,," = { "Action" = "kPasteFromClipboardPointerAction"; }; - "Gesture,ThreeFingerSwipeDown,," = { - "Action" = "kPrevWindowPointerAction"; - }; - "Gesture,ThreeFingerSwipeLeft,," = { "Action" = "kPrevTabPointerAction"; }; - "Gesture,ThreeFingerSwipeRight,," = { "Action" = "kNextTabPointerAction"; }; - "Gesture,ThreeFingerSwipeUp,," = { "Action" = "kNextWindowPointerAction"; }; - }; - "Print In Black And White" = true; - "ShowFullScreenTabBar" = false; - "SoundForEsc" = false; - "TabStyleWithAutomaticOption" = 4; - "ToolbeltTools" = [ - "Profiles" - "Jobs" - - ]; - "VisualIndicatorForEsc" = false; - "findMode_iTerm" = 0; - "kCPKSelectionViewPreferredModeKey" = 0; - "kCPKSelectionViewShowHSBTextFieldsKey" = false; -}