diff options
author | Solderpunk <solderpunk@sdf.org> | 2018-12-12 18:16:32 +0000 |
---|---|---|
committer | Solderpunk <solderpunk@sdf.org> | 2018-12-12 18:16:32 +0000 |
commit | 15cf67638cf93f63231efc5c52232430a49879bc (patch) | |
tree | 4097ed66b6ed3f483fdcf775b7e78d8c7917da76 /telem.lua | |
parent | Let user preview their posts and cancel or edit further. (diff) |
Read username as command line argument.
Diffstat (limited to '')
-rwxr-xr-x | telem.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ _COLOURS = { -- Global var declarations -username = os.getenv("USER") -- TODO: This is, obviously, not secure and will need to be updated +username = arg[1] boards = {} -- Array of board tables, alphaetically sorted boards_by_name = {} -- Set of board names, values are tables, must always be consistent with boards current_board = nil -- Active board table |