A tool for checking which businesses are now open.
Go to file
2025-03-01 17:00:57 -05:00
doc Added manfile 2019-01-22 23:35:33 -08:00
example_businesshours Improved install/uninstall process and updated doc. 2019-01-05 16:45:12 -08:00
LICENSE Added readme/license and better -p flag 2019-01-05 15:34:14 -08:00
Makefile Fixed uninstall 2019-01-05 16:47:35 -08:00
nowopen Match against place name as well 2025-03-01 17:00:57 -05:00
README.md More usage 2022-05-01 12:55:42 -04:00

nowopen

nowopen is a simple program to display which places are currently open.

Preview

Installing

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:

Mario Bros Plumbing (plumbers):
    7am-6:30pm
    sun: closed

Usage

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.
  • -e/--edit: Edit the config file and exit.
  • -r/--random: Pick a single random option.
  • -p/--plain: Print the results to stdout in plain text.