aboutsummaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorBrian Leung <leungbk@mailfence.com>2020-01-25 10:35:47 -0800
committerBrian Leung <leungbk@mailfence.com>2020-01-25 10:44:02 -0800
commit704719edade1368f798c9301f3a8197a0df5c930 (patch)
treeb2388184e46ae484f5a3dcf7075fe9b0d6be66f1 /TODO
parent5b7fdc8289ce0adf85e881bc23d3537121b41193 (diff)
downloadguix-704719edade1368f798c9301f3a8197a0df5c930.tar.gz
guix-704719edade1368f798c9301f3a8197a0df5c930.zip
gnu: Add emacs-eshell-toggle.
* gnu/packages/emacs-xyz.scm (emacs-eshell-toggle): New variable.
Diffstat (limited to 'TODO')
0 files changed, 0 insertions, 0 deletions
d the QEMU image. (<virtual-machine>)[volatile?]: New field. (virtual-machine-compiler): Pass the volatile? argument to the system-qemu-image/shared-store-script procedure. Mathieu Othacehe 2021-12-05Merge remote-tracking branch 'origin/master' into core-updates-frozenRicardo Wurmus 2021-12-03system: vm: Remove the vga argument....* gnu/system/vm.scm (common-qemu-options): Remove the "-vga std" argument that is the default since QEMU 2.2. Suggested-by: Attila Lendvai <attila@lendvai.name> Mathieu Othacehe 2021-12-03guix system vm: Add --no-graphic CLI argument....It configures QEMU to use the tty it was started in for IO (as opposed to opening a separate graphical window). This enables copy-pasting and scrollback. Exit QEMU with C-a x. * gnu/system/vm.scm (system-qemu-image/shared-store-script): Also add the '-nographic' QEMU argument when called with #:graphic? #false. * guix/scripts/system.scm (system-derivation-for-action): Propagate the #:graphic? keyword arg. (perform-action): Add and propagate the #:graphic? keyword arg. (show-help): Add --no-graphic CLI arg. (%options): Process the new --no-graphic CLI arg. (process-action): Feed in the CLI arg through the #:graphic? keyword arg. * doc/guix.texi (Invoking guix system): Add example to combine guix system and invoking the vm start script into one command. Split the description of the various options into separate paragraphs. Add a paragraph to describe --no-graphic. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Attila Lendvai