Skip to content
This repository has been archived by the owner on Oct 2, 2019. It is now read-only.

Configuration

Andrew Krasichkov edited this page Nov 25, 2015 · 2 revisions

Помимо общих настроек, предоставляемых Битрикс24, существуют так же и специфичные для Brick. Хранятся они в конфигурационном файле config.json и должны быть описаны в json-формате. Поиск конфигурационного файла осуществляется в соответствии с спецификацией XDG Base Directory Specification, таким образом может быть как глобальный конфиг для всех пользователей /etc/xdg/brick/config.json так и персональный, пользовательский ~/.config/brick/config.json. Учтите, что настройки описанные в пользовательской конфигурации имеют более высокий приоритет, чем системные. Актуальный пример конфигурации всегда можно найти в системном файле /etc/xdg/brick/example-config.json , ниже будут описаны все основные настройки. в котором описаны основные возможности и даны примеры:

// This is example config file, describes available Brick settings
// Place your settings in the file "/etc/xdg/brick/config.json" or "~/.config/brick/config.json"
// Configuration from User Config will override system settings
// See "XDG Base Directory Specification" for more information about file paths
{
  // Uncomment line below to starts Brick minimized by default
  // "minimized": true,

  // Uncomment line below to disable sets "Away" on user AFK
  // "auto-away": false,

  // Uncomment line below to shutdown Brick when main window was closed
  // "hide-on-delete": false,

  // Uncomment line below to disable "Extended indicator statuses" like a DnD, Away, etc.
  // "extended-status": false,

  // Uncomment line below to ignore errors related to invalid SSL certificates
  // "ignore-certificate-errors": true,

  // Uncomment line below to enable file downloading w/o "Save file" dialog
  // "auto-download": true,

  // Listed javascript files below will be injected to page after Brick loaded
  // "client-scripts": [
  //   "~/.config/brick/no-more-smiles.js"
  // ],

  // Override user download dir (by default "$HOME/Downloads")
  // "download-dir": "~/Downloads"
}
Clone this wiki locally