Re: simple question about copying in the terminal

2025-02-07 Thread Felix Lechner via
Hi Gottfried On Fri, Feb 07 2025, gfp wrote: > I will try it in Emacs In software, Emacs divides the world. We can still be friends if you use Vim. When using Emacs, however, please use the following commands instead: C-x C-c to quit C-x C-s to save C-x C-f to open a file I haven

Re: Jekyll: Themes and Automated Deployment in Guix

2025-02-07 Thread Felix Lechner via
Hi Marek, On Fri, Feb 07 2025, Roman Riabenko via wrote: > Hello, Marek. > > On Thu, 06 Feb 2025 12:38:38 +0100 > Marek Paśnikowski wrote: > >> In return I would like to ask, how should I go about making the >> `#!/bin/bash` line >> of the bash script dynamic and responsive to the updates of Ba

Re: simple question about copying in the terminal

2025-02-07 Thread gfp
Hi Felix, thanks to all for your pieces of advice and to Felix for your detailed explanation, I will try it in Emacs because I am learning Emacs anyway. even though tmux from Arnoud´s mail is an interesting proposal. thanks Gottfried Am 07.02.25 um 16:31 schrieb Felix Lechner: Hi Gottfried

Injecting/importing environment variables in shepherd environment

2025-02-07 Thread Abbé
Hi, I'm wondering if there is a way to inject/import environment variables in to a shepherd session, akin to `systemctl import-environment' (of systemd) ? One application that I miss from systemd times is, having user services managed by a service manager, and yet able to interact with desktop

Re: Jekyll: Themes and Automated Deployment in Guix

2025-02-07 Thread Roman Riabenko via
Hello, Marek. On Thu, 06 Feb 2025 12:38:38 +0100 Marek Paśnikowski wrote: > In return I would like to ask, how should I go about making the `#!/bin/bash` > line > of the bash script dynamic and responsive to the updates of Bash in Guix? I can comment on this one. That line, which is often refe

Re: File exists

2025-02-07 Thread Efraim Flashner
On Thu, Feb 06, 2025 at 06:53:52PM -0800, Felix Lechner via wrote: > Hi, > > Upgrading fails with: > > guix deploy: sending 946 store items (3,403 MiB) to > 'wallace-server.local'... > guix deploy: error: failed to deploy wallace-server: failed to switch > systems while deploying 'wallace-s

Re: simple question about copying in the terminal

2025-02-07 Thread Alexis Simon
Hi, One option could be to redirect the output to a file and then copy the content from there with an editor. `>` if it's stdout and `2>` if it's stderr. For example I can copy to clipboard in helix editor, I'm pretty sure this is possible with other terminal editors as well. Alexis On 07

Re: simple question about copying in the terminal

2025-02-07 Thread Arnaud Daby-Seesaram
Hi, gfp writes: > I have got this stout in my bash shell > > > GUIX_PROFILE="/home/gfp/.guix-profile" > . "$GUIX_PROFILE/etc/profile" > > My question was: > > how can I get back to the 3rd and 4th last line > copy/kill it and paste/yank it without mouse > so that I can set the variables? A

Re: simple question about copying in the terminal

2025-02-07 Thread gfp
Hi, thanks to all for help I have got this stout in my bash shell GUIX_PROFILE="/home/gfp/.guix-profile" . "$GUIX_PROFILE/etc/profile" You can read it with `guix package --search-paths -p "/home/gfp/.guix-profile"'. My question was: how can I get back to the 3rd and 4th last line copy

Re: simple question about copying in the terminal

2025-02-07 Thread gfp
Hi, what is the advantage of installing Termite, or the newer version: alacritty? Is it for VIM users with a similar keymap? or has it other advantages as well? Is it better to install Termite or Alacritty? in Guix? thanks Gottfried Am 04.02.25 um 19:36 schrieb Tobias Geerinckx-Rice: Yo,

Re: simple question about copying in the terminal

2025-02-07 Thread Felix Lechner via
Hi Gottfried, On Fri, Feb 07 2025, gfp wrote: > You can read it with `guix package --search-paths -p > "/home/gfp/.guix-profile"'. I think you want to redirect the output and edit it: guix package --search-paths -p "/home/gfp/.guix-profile" > /tmp/whatever Then you can use vim to edit /tmp/