RON database manager
at main 48 lines 1.0 kB view raw view rendered
1<!-- LTeX: language=en,es --> 2# R. O. N. DataBase Manager 3 4**rdbm** is a rust program for getting and setting a custom ron resource file. 5 6Similar to `.Xresources`, `rdbm` will create a `resources.ron` in your `~/.config/` directory. 7You can then use `rdbm` to set multiple "key-value" pairs similar to `.Xresources`. 8In this case `rdbm` aims to replace `xrdb`. 9 10- [ron Documentation](https://github.com/ron-rs/ron) 11- [xrdb Information](https://wikipedia.org/wiki/Xrdb) 12 13# Documentation 14 15Here is a short preview of each subcommand: 16 17## view current resource file 18 19``` 20rdbm all 21``` 22 23## set a key-value pair 24 25``` 26rdbm set "color0" "#222F30" 27``` 28 29## get a value 30 31``` 32rdbm get "color0" 33``` 34 35## rdbm help page 36``` 37rdbm --help 38rdbm help 39rdbm set --help 40``` 41 42# Project Goals 43 * Remove entries 44 * Get/Set multiple values 45 * Custom `resource.ron` path 46 * Group key-value pairs (similar to having `URxvt*color0` and `xterm*color0` in .Xresources) 47 * Sort entries in resource file 48 * Preserve order of entries in resource file