Minor cleanup
This commit is contained in:
parent
72f49aa40a
commit
fd5eecdb3a
18
README.md
18
README.md
@ -5,6 +5,7 @@
|
|||||||

|

|
||||||
|
|
||||||
## Installing
|
## Installing
|
||||||
|
|
||||||
`sudo make install` to install, and `sudo make uninstall` to uninstall.
|
`sudo make install` to install, and `sudo make uninstall` to uninstall.
|
||||||
You should also create a file to store business hours in at either
|
You should also create a file to store business hours in at either
|
||||||
`~/.local/share/nowopen/businesshours` (recommended) or `~/.businesshours`.
|
`~/.local/share/nowopen/businesshours` (recommended) or `~/.businesshours`.
|
||||||
@ -19,8 +20,15 @@ Mario Bros Plumbing (plumbers):
|
|||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## 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
|
Once you have a businesshours file, run `nowopen [tag1 tag2...]`.
|
||||||
time till they close will be displayed. E.g. `nowopen plumber` will show how long
|
Establishments matching any of the specified tags (prefix matching is used) and
|
||||||
"Mario Bros Plumbing" is open. The "-p" flag can be used to print plain text to
|
the amount of time till they close will be displayed. E.g. `nowopen plumber`
|
||||||
stdout instead of displaying in a temporary display with colors.
|
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.
|
||||||
|
14
nowopen
14
nowopen
@ -17,7 +17,7 @@
|
|||||||
--
|
--
|
||||||
|
|
||||||
local XDG_DATA_HOME = os.getenv("XDG_DATA_HOME") or "~/.local/share"
|
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')
|
print(XDG_DATA_HOME..'/nowopen/businesshours')
|
||||||
os.exit(0)
|
os.exit(0)
|
||||||
end
|
end
|
||||||
@ -35,16 +35,16 @@ f:close()
|
|||||||
local raw_print = false
|
local raw_print = false
|
||||||
local randomize = false
|
local randomize = false
|
||||||
for i=#arg,1,-1 do
|
for i=#arg,1,-1 do
|
||||||
if arg[i] == "-p" then
|
if arg[i] == "-p" or arg[i] == "--plain" then
|
||||||
raw_print = true
|
raw_print = true
|
||||||
table.remove(arg, i)
|
table.remove(arg, i)
|
||||||
elseif arg[i] == "-r" or arg[i] == "--randomize" then
|
elseif arg[i] == "-r" or arg[i] == "--random" then
|
||||||
randomize = true
|
randomize = true
|
||||||
table.remove(arg, i)
|
table.remove(arg, i)
|
||||||
elseif arg[i] == "-h" or arg[i] == "--help" then
|
elseif arg[i] == "-h" or arg[i] == "--help" then
|
||||||
print([[
|
print([[
|
||||||
nowopen: show which businesses are now open.
|
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
|
-p: Print plain text to stdout
|
||||||
-r: Randomly pick one available option
|
-r: Randomly pick one available option
|
||||||
-w: Print where the config file is and exit
|
-w: Print where the config file is and exit
|
||||||
@ -94,6 +94,7 @@ local dsl = re.compile([=[
|
|||||||
word <- [^%nl%tab (),:#-]+
|
word <- [^%nl%tab (),:#-]+
|
||||||
ws <- [ %tab]+
|
ws <- [ %tab]+
|
||||||
]=], {tab="\t"})
|
]=], {tab="\t"})
|
||||||
|
|
||||||
local places,err = dsl:match(place_text)
|
local places,err = dsl:match(place_text)
|
||||||
if err then
|
if err then
|
||||||
print("Failed to parse config file:")
|
print("Failed to parse config file:")
|
||||||
@ -104,7 +105,7 @@ end
|
|||||||
local weekdays = {"sunday","monday","tuesday","wednesday","thursday","friday","saturday"}
|
local weekdays = {"sunday","monday","tuesday","wednesday","thursday","friday","saturday"}
|
||||||
local function get_weekday(str)
|
local function get_weekday(str)
|
||||||
for i,w in ipairs(weekdays) do
|
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
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -119,7 +120,7 @@ for i,place in ipairs(places) do
|
|||||||
goto next_place
|
goto next_place
|
||||||
::carry_on::
|
::carry_on::
|
||||||
end
|
end
|
||||||
local today_times
|
local today_times = nil
|
||||||
for _,time in ipairs(place.times) do
|
for _,time in ipairs(place.times) do
|
||||||
local from, to = get_weekday(time.from), get_weekday(time.to or time.from)
|
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)
|
if (from <= to and from <= today.wday and today.wday <= to) -- no wraparound (e.g. mon-wed)
|
||||||
@ -202,4 +203,5 @@ end
|
|||||||
if not raw_print then output:write(("\n"):rep((rows-#lines)//2)) end
|
if not raw_print then output:write(("\n"):rep((rows-#lines)//2)) end
|
||||||
output:write(table.concat(lines, "\n"))
|
output:write(table.concat(lines, "\n"))
|
||||||
if not raw_print then output:write(("\n"):rep((rows-#lines)//2)) end
|
if not raw_print then output:write(("\n"):rep((rows-#lines)//2)) end
|
||||||
|
if raw_print then output:write("\n") end
|
||||||
output:close()
|
output:close()
|
||||||
|
Loading…
Reference in New Issue
Block a user