---
title: "Gerrit"
date: 2018-06-27T15:55:42-07:00
draft: false
---
Displays information about your projects hosted on Gerrit:
#### Open Incoming Reviews
All open reviews that are requesting your approval.
#### My Outgoing Reviews
All open reviews created by you.
## Source Code
```bash
wtf/gerrit/
```
## Keyboard Commands
Key: `/`
Action: Open/close the widget's help window.
Key: `h`
Action: Show the previous project.
Key: `l`
Action: Show the next project.
Key: `j`
Action: Select the next review in the list.
Key: `k`
Action: Select the previous review in the list.
Key: `r`
Action: Refresh the data.
Key: `←`
Action: Show the previous project.
Key: `→`
Action: Show the next project.
Key: `↓`
Action: Select the next review in the list.
Key: `↑`
Action: Select the previous review in the list.
Key: `[return]`
Action: Open the selected review in the browser.
## Configuration
```yaml
gerrit:
colors:
rows:
even: "lightblue"
odd: "white"
domain: https://gerrit-review.googlesource.com
enabled: true
password: "mypassword"
position:
top: 2
left: 3
height: 2
width: 2
projects:
- org/test-project"
- dotfiles
refreshInterval: 300
username: "myname"
verifyServerCertificate: false
```
### Attributes
`colors.rows.even`
Define the foreground color for even-numbered rows.
Values: Any X11
color name.
`colors.rows.odd`
Define the foreground color for odd-numbered rows.
Values: Any X11
color name.
`domain`
Your Gerrit corporate domain.
Values: A valid URI.
`enabled`
Determines whether or not this module is executed and if its data displayed onscreen.
Values: `true`, `false`.
`password`
Value: Your Gerrit HTTP Password.
`position`
Defines where in the grid this module's widget will be displayed.
`projects`
A list of Gerrit project names to fetch data for.
`refreshInterval`
How often, in seconds, this module will update its data.
Values: A positive integer, `0..n`.
`username`
Your Gerrit username.
`verifyServerCertificate`
_Optional_
Determines whether or not the server's certificate chain and host name are verified.
Values: `true`, `false`.