Re: Status of hibernation (suspend to disk) in Guix

2023-01-07 Thread Ivan Vilata i Balaguer
Ivan Vilata i Balaguer (2022-12-21 13:27:25 +0100) wrote: > […] I sent an alternative, more elaborated patch to #59746. […] Just a heads up for anyone following the thread but not the issue: the changes got merged by Ludo in c9b383fb with a few fixes. Thanks everyone for your help! -- I

Re: Status of hibernation (suspend to disk) in Guix

2022-12-21 Thread Ivan Vilata i Balaguer
Ivan Vilata i Balaguer (2022-12-14 10:43:46 +0100) wrote: > Since it's unlikely that the file will change its block arrangement on disk, > and enlarging it requires another invocation of `mkswap`, it's probably enough > to tell the user to check for such warnings on `mks

Re: Status of hibernation (suspend to disk) in Guix

2022-12-14 Thread Ivan Vilata i Balaguer
Ivan Vilata i Balaguer (2022-12-12 21:11:53 +0100) wrote: > Mekeor Melire (2022-12-10 01:00:24 +) wrote: > > > > What about the "filefrag" executable from the "e2fsprogs" package. > > > According to this article, it can be used in

Re: Status of hibernation (suspend to disk) in Guix

2022-12-12 Thread Ivan Vilata i Balaguer
ux/kernel/git/rafael/suspend-utils.git/tree/swap-offset.c#n114 I guess that swap header fragmentation won't happen in most cases, but I also see that the instructions in "(guix)Keyboard Layout, Networking, and Partitioning" to create a swap file use `dd` instead of something

Re: Status of hibernation (suspend to disk) in Guix

2022-12-05 Thread Ivan Vilata i Balaguer
Thanks for the update, Tobias! More inline… Tobias Geerinckx-Rice (2022-12-02 21:32:09 +0100) wrote: > Ivan Vilata i Balaguer 写道: > > So the TL;DR would be: Is it worth adding such documentation, given the > > current state of hibernation support in Guix? > > I think do

Status of hibernation (suspend to disk) in Guix

2022-12-02 Thread Ivan Vilata i Balaguer
h an installation on a VM didn't even create a swap space. Though installer support may be a whole different discussion. `:P` So the TL;DR would be: Is it worth adding such documentation, given the current state of hibernation support in Guix? Thanks! -- Ivan Vilata i Balaguer -- https://elvil.net/ signature.asc Description: PGP signature

Re: Remove duplicates in AUTHORS file before the release

2016-12-20 Thread Ivan Vilata i Balaguer
Alex Kost (2016-12-20 16:57:50 +0300) wrote: > Hello, if it's not too late for the release, I think it would be good > to adjust ".mailmap" to avoid duplicates in the generated AUTHORS file > (if it's too late, it would be good anyway). […] > > - Ivan: "I

Re: [PATCH 0/2] Add quickswitch for i3 (third try)

2016-10-01 Thread Ivan Vilata i Balaguer
宋文武 (2016-10-01 10:59:14 +0800) wrote: > Ivan Vilata i Balaguer writes: > > > Ivan Vilata i Balaguer (2016-09-21 11:18:47 +0200) wrote: > > > >> Hi, this is my third try at packaging [quickswitch][] for the i3 > >> window manager. […] > >> >

Re: [PATCH 0/2] Add quickswitch for i3 (third try)

2016-09-27 Thread Ivan Vilata i Balaguer
Ivan Vilata i Balaguer (2016-09-21 11:18:47 +0200) wrote: > Hi, this is my third try at packaging [quickswitch][] for the i3 > window manager. The main difference from the second iteration is in > the changes suggested by Alex Kost to update the Scheme code (I had > copied and

[PATCH 1/2] gnu: wm: Add python-i3-py.

2016-09-21 Thread Ivan Vilata i Balaguer
) +(license license:gpl3+))) + +(define-public python2-i3-py + (package-with-python2 python-i3-py)) + (define-public xmonad (package (name "xmonad") -- 2.10.0 -- Ivan Vilata i Balaguer -- https://elvil.net/ signature.asc Description: PGP signature

[PATCH 2/2] gnu: wm: Add quickswitch-i3.

2016-09-21 Thread Ivan Vilata i Balaguer
er") +(description "This utility for the i3 window manager allows you to quickly +switch to and locate windows on all your workspaces, using an interactive +dmenu prompt. It has since gained a lot of other functionality to make +working with i3 even more efficient.") +(license (license:non-copyleft "http://www.wtfpl.net/txt/copying/";) + (define-public xmonad (package (name "xmonad") -- 2.10.0 -- Ivan Vilata i Balaguer -- https://elvil.net/ signature.asc Description: PGP signature

[PATCH 0/2] Add quickswitch for i3 (third try)

2016-09-21 Thread Ivan Vilata i Balaguer
t for testing, advice and patience! Ivan Vilata-i-Balaguer (2): gnu: wm: Add python-i3-py. gnu: wm: Add quickswitch-i3. .../patches/quickswitch-fix-dmenu-check.patch | 32 gnu/packages/wm.scm| 88 ++ 2 files changed, 120 inser

Re: [PATCH 2/2] gnu: python: Add i3-quickswitch.

2016-09-20 Thread Ivan Vilata i Balaguer
Leo Famulari (2016-09-19 17:39:37 -0400) wrote: > On Mon, Sep 19, 2016 at 11:24:02AM +0200, Ivan Vilata i Balaguer wrote: > > Thanks Leo and Brendan for your comments, I'm writing new versions > > of the packages following your suggestions, unfortunately I found > >

[PATCH 2/2] gnu: wm: Add quickswitch-i3.

2016-09-19 Thread Ivan Vilata i Balaguer
indow manager") +(description "This utility for the i3 window manager allows you to quickly +switch to and locate windows on all your workspaces, using an interactive +dmenu prompt. It has since gained a lot of other functionality to make +working with i3 even more efficient.") +(license (license:non-copyleft "http://www.wtfpl.net/txt/copying/";) + (define-public xmonad (package (name "xmonad") -- 2.10.0 -- Ivan Vilata i Balaguer -- https://elvil.net/ signature.asc Description: PGP signature

[PATCH 1/2] gnu: wm: Add python-i3-py.

2016-09-19 Thread Ivan Vilata i Balaguer
kage allows you to interact from a Python program +with the i3 window manager via its IPC socket. It can send commands and other +kinds of messages to i3, select the affected containers, filter results and +subscribe to events.") + (license license:gpl3+))) + +(define-public python2-i3-py + (pac

[PATCH 0/2] Add quickswitch for i3 (second try)

2016-09-19 Thread Ivan Vilata i Balaguer
n any case, I expect people to just look for ``quickswitch``. [quickswitch for i3]: https://github.com/proxypoke/quickswitch-for-i3/ [PyPi package]: https://pypi.python.org/pypi/quickswitch-i3/ Thanks to Brendan Tildesley, Leo Famulari and Hartmut Goebel for testing and advice. Ivan Vilata-i-Balaguer

Re: [PATCH 2/2] gnu: python: Add i3-quickswitch.

2016-09-19 Thread Ivan Vilata i Balaguer
Ivan Vilata i Balaguer (2016-09-19 11:24:02 +0200) wrote: > Thanks Leo and Brendan for your comments, I'm writing new versions of > the packages following your suggestions, unfortunately I found out > that ``quickswitch.py`` makes use of the Debian-specific ``which`` > tool, so

Re: [PATCH 2/2] gnu: python: Add i3-quickswitch.

2016-09-19 Thread Ivan Vilata i Balaguer
Leo Famulari (2016-09-16 01:46:37 -0400) wrote: > On Wed, Sep 14, 2016 at 11:17:24AM +0200, Ivan Vilata i Balaguer wrote: > > Subject: [PATCH 2/2] gnu: python: Add i3-quickswitch. > > > > * gnu/packages/python.scm (i3-quickswitch): New variable. > > Cool, this works :

Re: [PATCH 1/2] gnu: python: Add python-i3.

2016-09-14 Thread Ivan Vilata i Balaguer
Brendan Tildesley (2016-09-14 20:17:34 +1000) wrote: > On 2016-09-14 19:16, Ivan Vilata i Balaguer wrote: > > This is version 0.6.4, but the git repo has a few small updates since > then, and has bumbed the version to 0.6.5. Being 4 years old, probably > this is not going to f

[PATCH 2/2] gnu: python: Add i3-quickswitch.

2016-09-14 Thread Ivan Vilata i Balaguer
From 621739c63f132115ee923da7bb61ff87844345f4 Mon Sep 17 00:00:00 2001 From: Ivan Vilata-i-Balaguer Date: Wed, 14 Sep 2016 11:00:25 +0200 Subject: [PATCH 2/2] gnu: python: Add i3-quickswitch. * gnu/packages/python.scm (i3-quickswitch): New variable. --- gnu/packages/python.scm | 26

[PATCH 1/2] gnu: python: Add python-i3.

2016-09-14 Thread Ivan Vilata i Balaguer
From 3c39ddc7124c33ea0abe2d35a293b79942bf32b6 Mon Sep 17 00:00:00 2001 From: Ivan Vilata-i-Balaguer Date: Wed, 14 Sep 2016 08:28:22 +0200 Subject: [PATCH 1/2] gnu: python: Add python-i3. * gnu/packages/python.scm (python-i3, python2-i3): New variables. --- gnu/packages/python.scm | 25

[PATCH 0/2] Add quickswitch for i3

2016-09-14 Thread Ivan Vilata i Balaguer
I did something wrong!`:)` [quickswitch for i3]: https://github.com/proxypoke/quickswitch-for-i3 [i3-py]: https://github.com/ziberna/i3-py Cheers, -- Ivan Vilata i Balaguer -- https://elvil.net/ signature.asc Description: PGP signature

[PATCH] gnu: python-py3status: Update to 3.1.

2016-09-12 Thread Ivan Vilata-i-Balaguer
* gnu/packages/python.scm (python-py3status): Update to 3.1. --- gnu/packages/python.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 8b9273c..b839f22 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.s