feat: add --set flag for headless cell value writing#254
Open
cemheren wants to merge 50 commits into
Open
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Targets homelab audience with health-ext, tls, docker, ping extensions. Positioned as 'wallpaper dashboard' not a Homepage/Dashy replacement. Includes posting strategy, first comment, and timing notes.
Targets r/linux's technical audience with the X11 P/Invoke angle, honest Wayland limitation, and open-source philosophy framing. Saved to drafts/reddit-linux.md for user to publish manually.
Allows writing a value into a specific cell from the command line without launching the desktop UI. Useful for shell scripts, cron jobs, and CI pipelines that update dashboard cells. Usage: ExcelConsole data.csv --set B2 "Updated from CI" Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
--set <CellRef> <value>flag for writing a cell value from the command line without launching desktop mode.Usage
Parses standard cell references (A1, B2, AA10, etc.) using the existing
CellPrefix.ParseCellRefhelper. Validates file existence and cell reference format, exits non-zero on error.Enables scripting integration: update QuickSheet dashboard cells from shell scripts without interactive UI.