https://github.com/davatorium/rofi-calc
https://github.com/davatorium/rofi-calc
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/davatorium/rofi-calc
- Owner: davatorium
- Created: 2019-03-23T10:38:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-23T10:40:59.000Z (about 6 years ago)
- Last Synced: 2025-05-13T00:07:14.962Z (27 days ago)
- Language: C++
- Size: 9.77 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- 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
```