blob: c0b83e2c0b87a89c6e69da8c255ca3dbbc3ddf53 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Listimer
Simple timer meant to be displayed in a sway-bar status.
## Usage
Start the timer with the `start` subcommand.
```sh
$ listimer start <number of minutes>
```
Restart the timer with the `restart` subcommand.
```sh
$ listimer restart
```
Stop the timer with the `stop` subcommand.
```sh
$ listimer stop
```
Query the timer with the `query` subcommand.
```sh
$ listimer query
```
The command will output [pango
markup](https://docs.gtk.org/Pango/pango_markup.html). To use it with sway-bar
be sure to enable the `pango_markup` sway-bar option.
|