Tech News
← Back to articles

Json2dir: a JSON-to-directory converter, a fast alternative to home-manager

read original related products more articles

json2dir : a JSON-to-directory converter, a fast alternative to home-manager for managing dotfiles

TL;DR:

file.json :

{ "file" : " Hello, world! " , "dir" : { "subfile" : " Content.

" , "subdir" : {} }, "symlink" : [ " link " , " target path " ], "script" : [ " script " , " #!/bin/sh

echo Howdy! " ] }

cat file.json | json2dir

Here, four files will be added to the current directory: file , dir , symlink , and script .

Using json2dir as a home-manager alternative.

Input schema

... continue reading