Jonathan Haylett

Results 113 comments of Jonathan Haylett

Seeing as a lot of people have requested this feature I will probably add a basic save all option, but I think if you go any further you end up...

Fair enough. I will at most add an `--all` flag to save, restore, and rm commands.

Here's a cleaner one liner without the wmctrl dependency, in case anyone's interested: ``` i3-msg -t get_workspaces | jq -r '.[].name' | xargs -n1 i3-resurrect save -w ```

> This one adds a dep to jq :-D Haha I just assumed most people would have it seeing as it's a super useful and common scripting tool > I...

The -n option came out in 1.4.0 actually. Also if you like you can install directly from the master branch with pip. I think the syntax is: `pip install git+https://github.com/JonnyHaystack/i3-resurrect.git`

@pvonmoradi you can do that. Just set the `--directory/-d` option to something else. That's how I plan to have it work anyway. I haven't implemented `--all` yet, but should be...

Why not just assign your workspaces to monitors in the i3 config? EDIT: Sorry I should clarify based on your first sentence. My solution to this is to have my...

Okay, I get you. i3-resurrect is generally designed around not having to manually edit the layout files, but this seems like a good feature so I'm happy to give that...

Right, I can make a command line flag for that then, seeing as people might not want that behaviour by default

How are you even able to do `i3-resurrect save -w __i3_scratch -p bunchawindows`? According to #97 I would've expected this not to even save successfully.