awesome-wm-widgets/github-prs-widget/README.md

44 lines
1.3 KiB
Markdown
Raw Normal View History

2021-09-20 03:10:39 +02:00
# GitHub PRs Widget
<p align="center">
<a href="https://github.com/streetturtle/awesome-wm-widgets/labels/github-prs" target="_blank"><img alt="GitHub issues by-label" src="https://img.shields.io/github/issues/streetturtle/awesome-wm-widgets/github-prs"></a>
</p>
2021-12-13 10:36:10 +01:00
The widget shows the number of pull requests assigned to the user and when clicked shows additional information, such as
2021-09-20 03:10:39 +02:00
- author's name and avatar (opens user profile page when clicked);
- PR name (opens MR when clicked);
- name of the repository;
- when was created;
- number of comments;
2021-09-20 03:11:49 +02:00
<p align="center">
<img src="https://github.com/streetturtle/awesome-wm-widgets/raw/master/github-prs-widget/screenshots/screenshot1.png">
</p>
2021-09-20 03:10:39 +02:00
## Customization
It is possible to customize widget by providing a table with all or some of the following config parameters:
| Name | Default | Description |
|---|---|---|
| `reviewer` | Required | GitHub username |
2021-09-20 03:10:39 +02:00
## Installation
2021-12-13 10:36:10 +01:00
Install and setup [GitHub CLI](https://cli.github.com/)
2021-09-20 03:10:39 +02:00
Clone/download repo and use widget in **rc.lua**:
```lua
local github_prs_widget = require("awesome-wm-widgets.github-prs-widget")
...
s.mytasklist, -- Middle widget
{ -- Right widgets
layout = wibox.layout.fixed.horizontal,
...
github_prs_widget {
reviewer = 'streetturtle'
},
2021-12-13 10:36:10 +01:00
}
2021-09-20 03:10:39 +02:00
...
```