---
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/
```
## Required ENV Variables
Key: `WTF_GERRIT_PASSWORD`
Action: Your Gerrit HTTP Password.
## 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: `←`
Action: Show the previous project.
Key: `→`
Action: Show the next project.
## Configuration
```yaml
gerrit:
enabled: true
position:
top: 2
left: 3
height: 2
width: 2
refreshInterval: 300
projects:
- org/test-project"
- dotfiles
username: "myname"
```
### Attributes
`enabled`
Determines whether or not this module is executed and if its data displayed onscreen.
Values: `true`, `false`.
`position`
Defines where in the grid this module's widget will be displayed.
`refreshInterval`
How often, in seconds, this module will update its data.
Values: A positive integer, `0..n`.
`domain`
_Optional_. Your Gerrit corporate domain.
Values: A valid URI.
`projects`
A list of Gerrit project names to fetch data for.
`username`
Your Gerrit username.
`verifyServerCertificate`
_Optional_
Determines whether or not the server's certificate chain and host name are verified.
Values: `true`, `false`.