2019-01-05 15:34:14 -08:00
|
|
|
# nowopen
|
|
|
|
|
|
|
|
`nowopen` is a simple program to display which places are currently open.
|
|
|
|
|
2019-01-05 17:14:30 -08:00
|
|
|

|
|
|
|
|
2019-01-05 16:45:12 -08:00
|
|
|
## Installing
|
2021-10-19 12:51:48 -07:00
|
|
|
|
2019-01-05 16:45:12 -08:00
|
|
|
`sudo make install` to install, and `sudo make uninstall` to uninstall.
|
|
|
|
You should also create a file to store business hours in at either
|
|
|
|
`~/.local/share/nowopen/businesshours` (recommended) or `~/.businesshours`.
|
|
|
|
An example businesshours file is provided, so you can get started by
|
|
|
|
running `mkdir -p ~/.local/share/nowopen && cp example_businesshours ~/.local/share/nowopen/businesshours`.
|
|
|
|
The businesshours format looks like:
|
2019-01-05 15:34:14 -08:00
|
|
|
|
|
|
|
```
|
|
|
|
Mario Bros Plumbing (plumbers):
|
|
|
|
7am-6:30pm
|
|
|
|
sun: closed
|
|
|
|
```
|
|
|
|
|
2019-01-05 16:45:12 -08:00
|
|
|
## Usage
|
2021-10-19 12:51:48 -07:00
|
|
|
|
|
|
|
Once you have a businesshours file, run `nowopen [tag1 tag2...]`.
|
|
|
|
Establishments matching any of the specified tags (prefix matching is used) and
|
|
|
|
the amount of time till they close will be displayed. E.g. `nowopen plumber`
|
|
|
|
will show how long "Mario Bros Plumbing" is open.
|
|
|
|
|
|
|
|
### Flags
|
|
|
|
|
|
|
|
- `-h`/`--help`: Print the usage and exit.
|
|
|
|
- `-w`/`--where`: Print where the config file is stored and exit.
|
2022-05-01 09:55:42 -07:00
|
|
|
- `-e`/`--edit`: Edit the config file and exit.
|
2021-10-19 12:51:48 -07:00
|
|
|
- `-r`/`--random`: Pick a single random option.
|
|
|
|
- `-p`/`--plain`: Print the results to stdout in plain text.
|