{
 "id": "gnome-terminal",
 "version": "0.1.0",
 "shared": [],
 "palettes": [
  {
   "id": "carbon",
   "label": "Carbon",
   "files": [
    {
     "name": "digitable-focus-carbon.sh",
     "path": "digitable-focus-carbon.sh",
     "lang": "shell",
     "bytes": 1795,
     "lines": 47,
     "text": "#!/bin/sh\n# Digitable Focus Carbon (dark) — Digitable Workbench 0.1.0\n#\n# GNOME Terminal has no theme file format: profile colors live in dconf.\n# This script writes them into one profile. Run it again to re-apply.\n#\n#   sh digitable-focus-carbon.sh              # default profile\n#   PROFILE_ID=<uuid> sh digitable-focus-carbon.sh\n#\n# List profile ids with:\n#   gsettings get org.gnome.Terminal.ProfilesList list\nset -eu\n\nfor tool in dconf gsettings; do\n  if ! command -v \"$tool\" >/dev/null 2>&1; then\n    echo \"digitable-focus: $tool was not found in PATH\" >&2\n    exit 1\n  fi\ndone\n\nprofile=${PROFILE_ID:-}\nif [ -z \"$profile\" ]; then\n  profile=$(gsettings get org.gnome.Terminal.ProfilesList default | tr -d \"'\")\nfi\nif [ -z \"$profile\" ]; then\n  echo \"digitable-focus: no default GNOME Terminal profile found\" >&2\n  exit 1\nfi\n\nbase=\"/org/gnome/terminal/legacy/profiles:/:$profile/\"\n\ndconf write \"${base}use-theme-colors\" \"false\"\ndconf write \"${base}use-transparent-background\" \"false\"\ndconf write \"${base}background-color\" \"'#05080D'\"\ndconf write \"${base}foreground-color\" \"'#F5F7FA'\"\ndconf write \"${base}bold-color-same-as-fg\" \"true\"\ndconf write \"${base}bold-color\" \"'#F5F7FA'\"\ndconf write \"${base}cursor-colors-set\" \"true\"\ndconf write \"${base}cursor-background-color\" \"'#00E5E5'\"\ndconf write \"${base}cursor-foreground-color\" \"'#05080D'\"\ndconf write \"${base}highlight-colors-set\" \"true\"\ndconf write \"${base}highlight-background-color\" \"'#15566A'\"\ndconf write \"${base}highlight-foreground-color\" \"'#F5F7FA'\"\ndconf write \"${base}palette\" \"['#05080D', '#FF5B5B', '#7CFF6B', '#FFC247', '#3CA9FF', '#B65CFF', '#00E5E5', '#9BAAB8', '#718695', '#FF5B5B', '#7CFF6B', '#FFC247', '#3CA9FF', '#B65CFF', '#00D8FF', '#F5F7FA']\"\n\necho \"digitable-focus: applied Digitable Focus Carbon to profile $profile\"\n"
    }
   ]
  },
  {
   "id": "paper",
   "label": "Paper",
   "files": [
    {
     "name": "digitable-focus-paper.sh",
     "path": "digitable-focus-paper.sh",
     "lang": "shell",
     "bytes": 1792,
     "lines": 47,
     "text": "#!/bin/sh\n# Digitable Focus Paper (light) — Digitable Workbench 0.1.0\n#\n# GNOME Terminal has no theme file format: profile colors live in dconf.\n# This script writes them into one profile. Run it again to re-apply.\n#\n#   sh digitable-focus-paper.sh              # default profile\n#   PROFILE_ID=<uuid> sh digitable-focus-paper.sh\n#\n# List profile ids with:\n#   gsettings get org.gnome.Terminal.ProfilesList list\nset -eu\n\nfor tool in dconf gsettings; do\n  if ! command -v \"$tool\" >/dev/null 2>&1; then\n    echo \"digitable-focus: $tool was not found in PATH\" >&2\n    exit 1\n  fi\ndone\n\nprofile=${PROFILE_ID:-}\nif [ -z \"$profile\" ]; then\n  profile=$(gsettings get org.gnome.Terminal.ProfilesList default | tr -d \"'\")\nfi\nif [ -z \"$profile\" ]; then\n  echo \"digitable-focus: no default GNOME Terminal profile found\" >&2\n  exit 1\nfi\n\nbase=\"/org/gnome/terminal/legacy/profiles:/:$profile/\"\n\ndconf write \"${base}use-theme-colors\" \"false\"\ndconf write \"${base}use-transparent-background\" \"false\"\ndconf write \"${base}background-color\" \"'#F4F7F8'\"\ndconf write \"${base}foreground-color\" \"'#10202A'\"\ndconf write \"${base}bold-color-same-as-fg\" \"true\"\ndconf write \"${base}bold-color\" \"'#10202A'\"\ndconf write \"${base}cursor-colors-set\" \"true\"\ndconf write \"${base}cursor-background-color\" \"'#007C83'\"\ndconf write \"${base}cursor-foreground-color\" \"'#F4F7F8'\"\ndconf write \"${base}highlight-colors-set\" \"true\"\ndconf write \"${base}highlight-background-color\" \"'#70CED4'\"\ndconf write \"${base}highlight-foreground-color\" \"'#10202A'\"\ndconf write \"${base}palette\" \"['#10202A', '#B4232E', '#287A36', '#8A5B00', '#0067A8', '#7139A3', '#007C83', '#526A78', '#5F7480', '#B4232E', '#287A36', '#8A5B00', '#0067A8', '#7139A3', '#006E78', '#10202A']\"\n\necho \"digitable-focus: applied Digitable Focus Paper to profile $profile\"\n"
    }
   ]
  },
  {
   "id": "signal",
   "label": "Signal",
   "files": [
    {
     "name": "digitable-focus-signal.sh",
     "path": "digitable-focus-signal.sh",
     "lang": "shell",
     "bytes": 1795,
     "lines": 47,
     "text": "#!/bin/sh\n# Digitable Focus Signal (dark) — Digitable Workbench 0.1.0\n#\n# GNOME Terminal has no theme file format: profile colors live in dconf.\n# This script writes them into one profile. Run it again to re-apply.\n#\n#   sh digitable-focus-signal.sh              # default profile\n#   PROFILE_ID=<uuid> sh digitable-focus-signal.sh\n#\n# List profile ids with:\n#   gsettings get org.gnome.Terminal.ProfilesList list\nset -eu\n\nfor tool in dconf gsettings; do\n  if ! command -v \"$tool\" >/dev/null 2>&1; then\n    echo \"digitable-focus: $tool was not found in PATH\" >&2\n    exit 1\n  fi\ndone\n\nprofile=${PROFILE_ID:-}\nif [ -z \"$profile\" ]; then\n  profile=$(gsettings get org.gnome.Terminal.ProfilesList default | tr -d \"'\")\nfi\nif [ -z \"$profile\" ]; then\n  echo \"digitable-focus: no default GNOME Terminal profile found\" >&2\n  exit 1\nfi\n\nbase=\"/org/gnome/terminal/legacy/profiles:/:$profile/\"\n\ndconf write \"${base}use-theme-colors\" \"false\"\ndconf write \"${base}use-transparent-background\" \"false\"\ndconf write \"${base}background-color\" \"'#000000'\"\ndconf write \"${base}foreground-color\" \"'#FFFFFF'\"\ndconf write \"${base}bold-color-same-as-fg\" \"true\"\ndconf write \"${base}bold-color\" \"'#FFFFFF'\"\ndconf write \"${base}cursor-colors-set\" \"true\"\ndconf write \"${base}cursor-background-color\" \"'#00FFFF'\"\ndconf write \"${base}cursor-foreground-color\" \"'#000000'\"\ndconf write \"${base}highlight-colors-set\" \"true\"\ndconf write \"${base}highlight-background-color\" \"'#00FFFF'\"\ndconf write \"${base}highlight-foreground-color\" \"'#000000'\"\ndconf write \"${base}palette\" \"['#000000', '#FF4D5A', '#7CFF00', '#FFD800', '#55AAFF', '#E47AFF', '#00FFFF', '#D0D9DE', '#A8B6BF', '#FF4D5A', '#7CFF00', '#FFD800', '#55AAFF', '#E47AFF', '#66FFFF', '#FFFFFF']\"\n\necho \"digitable-focus: applied Digitable Focus Signal to profile $profile\"\n"
    }
   ]
  }
 ]
}
