Minor cleanup

This commit is contained in:
Bruce Hill 2021-10-19 12:51:48 -07:00
parent 72f49aa40a
commit fd5eecdb3a
2 changed files with 22 additions and 12 deletions

View File

@ -5,6 +5,7 @@
![Preview](https://bitbucket.org/spilt/nowopen/downloads/nowopen_preview.gif)
## 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`.
@ -19,8 +20,15 @@ Mario Bros Plumbing (plumbers):
```
## Usage
Once you have a businesshours file, run `nowopen [-p] [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. The "-p" flag can be used to print plain text to
stdout instead of displaying in a temporary display with colors.
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.
- `-r`/`--random`: Pick a single random option.
- `-p`/`--plain`: Print the results to stdout in plain text.

16
nowopen
View File

@ -17,7 +17,7 @@
--
local XDG_DATA_HOME = os.getenv("XDG_DATA_HOME") or "~/.local/share"
if arg[1] == '-w' then
if arg[1] == '-w' or arg[1] == '--where' then
print(XDG_DATA_HOME..'/nowopen/businesshours')
os.exit(0)
end
@ -35,16 +35,16 @@ f:close()
local raw_print = false
local randomize = false
for i=#arg,1,-1 do
if arg[i] == "-p" then
if arg[i] == "-p" or arg[i] == "--plain" then
raw_print = true
table.remove(arg, i)
elseif arg[i] == "-r" or arg[i] == "--randomize" then
elseif arg[i] == "-r" or arg[i] == "--random" then
randomize = true
table.remove(arg, i)
elseif arg[i] == "-h" or arg[i] == "--help" then
print([[
nowopen: show which businesses are now open.
Usage: nowopen [-p] [-r] [-w] [--help] [tags...]
Usage: nowopen [-p|--plain] [-r|--random] [-w|--where] [-h|--help] [tags...]
-p: Print plain text to stdout
-r: Randomly pick one available option
-w: Print where the config file is and exit
@ -94,6 +94,7 @@ local dsl = re.compile([=[
word <- [^%nl%tab (),:#-]+
ws <- [ %tab]+
]=], {tab="\t"})
local places,err = dsl:match(place_text)
if err then
print("Failed to parse config file:")
@ -104,7 +105,7 @@ end
local weekdays = {"sunday","monday","tuesday","wednesday","thursday","friday","saturday"}
local function get_weekday(str)
for i,w in ipairs(weekdays) do
if w:sub(1,#str):lower() == str then return i end
if w:sub(1,#str):lower() == str:lower() then return i end
end
end
@ -119,7 +120,7 @@ for i,place in ipairs(places) do
goto next_place
::carry_on::
end
local today_times
local today_times = nil
for _,time in ipairs(place.times) do
local from, to = get_weekday(time.from), get_weekday(time.to or time.from)
if (from <= to and from <= today.wday and today.wday <= to) -- no wraparound (e.g. mon-wed)
@ -152,7 +153,7 @@ for i,place in ipairs(places) do
end
local rows, cols = 0, 0
if not raw_print then
if not raw_print then
local p = io.popen("tput cols")
cols = tonumber(p:read("*a"))
p:close()
@ -202,4 +203,5 @@ end
if not raw_print then output:write(("\n"):rep((rows-#lines)//2)) end
output:write(table.concat(lines, "\n"))
if not raw_print then output:write(("\n"):rep((rows-#lines)//2)) end
if raw_print then output:write("\n") end
output:close()