https://github.com/davatorium/rofi-plugin-template
https://github.com/davatorium/rofi-plugin-template
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/davatorium/rofi-plugin-template
- Owner: davatorium
- Created: 2019-03-23T10:26:44.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-23T10:26:55.000Z (almost 7 years ago)
- Last Synced: 2025-05-13T00:03:30.774Z (8 months ago)
- Language: C
- Size: 2.93 KB
- Stars: 9
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rofi plugin template
Template for creating rofi plugins.
To run this you need an up to date checkout of rofi git installed.
Run rofi like:
```bash
rofi -show myplugin -modi myplugin
```
## Compilation
### Dependencies
| Dependency | Version |
|------------|-----------------|
| rofi | 1.4 (or git) |
### Installation
**Rofi-plugin-template** uses autotools as build system. If installing from git, the following steps should install it:
```bash
$ autoreconf -i
$ mkdir build
$ cd build/
$ ../configure
$ make
$ make install
```