-
Notifications
You must be signed in to change notification settings - Fork 28
Config
Michael Palmos edited this page Jun 23, 2021
·
19 revisions
Wired doesn't create a config for you. If a config isn't found, Wired will use the default config, which can be found in the root of the repository.
Wired looks for a config file in the following locations:
$XDG_CONFIG_HOME/wired/wired.ron
$XDG_CONFIG_HOME/wired.ron
$HOME/.config/wired/wired.ron
$HOME/wired.ron
Name | Type | Description | Example |
---|---|---|---|
max_notifications |
int |
Maximum number of notifications shown at any one time. A value of 0 means there is no limit. |
max_notifications: 0 |
timeout |
int |
The default timeout, in milliseconds, for notifications that don't have an initial timeout set. 1000ms = 1s. | timeout: 10000 |
poll_interval |
int |
The update rate, in milliseconds. This decides how often notifications update, including how often they redraw (if required). 16ms ~= 60hz | poll_interval: 16 |
shortcuts |
ShortcutsConfig |
Configuration for preset shortcuts. See the shortcuts config page for more information. | See shortcuts page. |
Name | Type | Description | Example |
---|---|---|---|
replacing_enabled |
bool |
Enable/disable replacement functionality. If this is disabled, replacement requests will just send a new notification. E.g., with replacing_enabled: true , Pidgin will only show the latest message from each contact, instead of sending a new one for each message.Default: true
|
replacing_enabled: true |
closing_enabled |
bool |
Enable/disable closing functionality. You can still close notifications yourself, apps just can't do it for you. Default: true
|
closing_enabled: true |
debug |
bool |
Enable/disable debug rendering. Default: false
|
debug: false |
debug_color |
Color |
Primary color for debug rectangles. Default: Color(r: 0.0, g: 1.0, b: 0.0, a: 1.0)
|
debug_color: Color(r: 0.0, g: 1.0, b: 0.0, a: 1.0) |
debug_color_alt |
Color |
Secondary color for debug rectangles. Default: Color(r: 1.0, g: 0.0, b: 0.0, a: 1.0)
|
debug_color_alt: Color(r: 1.0, g: 0.0, b: 0.0, a: 1.0) |