Skip to content

Profiles

Jonathan Alcantar edited this page Dec 30, 2022 · 1 revision

How to create a profile?

To create profiles you can add the object profiles in file juice.json and in that object add the configurations for some profiles

{
  "config": "./example-settings.json",
  "profiles": {
    "fresh": {
      "backgroundImage": "path\\to\\fresh.jpg",
      "colorScheme": "Dracula",
      "cursorShape": "filledBox",
      "font": {
        "face": "JetBrainsMono NF",
	"size": 14
      },
      "opacity": 10,
      "padding": "4",
      "useAcrylic": false
    },
    "hacker": {
      "backgroundImage": "path\\to\\hacker.png",
      "colorScheme": "Ayu Mirage",
      "cursorShape": "bar",
      "font": {
        "face": "CaskaydiaCove NF",
	"size": 14
      },
      "opacity": 10,
      "padding": "6",
      "useAcrylic": true
    }
  }
}
Clone this wiki locally