- Manehattan MAS hub
- https://holanet.xyz
-
Sasha Koshka is the name I go by online. E-mail me if you have questions about that or about my projects in general.
- Joined on
2022-08-07
qi(1)
: Quirks
one should wait for another to conclude before beginning
What do you mean by this? Because I take it to mean that if you have:
ar
kv(1)
- key/value
Please elaborate
Well, you half elaborated for me. Watching .env
as you described is the kind of "rethinking" I was talking about. As for the general data storage/retrieval mechanism, I was…
kv(1)
- key/value
I’m starting to wonder what the benefit of this is over having environment variables set in the shell environment.
Configuring things via environment variables is generally very clumsy.…
kv(1)
- key/value
Setting values in the file could be achieved through manual editing and in scripts by existing (or not yet existing) tools.
In my opinion this kind of defeats the purpose of the tool, the…
kv(1)
- key/value
This would be more idiomatic:
$ config=~/.config/greeter.conf $ mm -i "$config" timeOfDay=morning name="$USER" $ mm -i "$config"
Layouts should not be attributes because sending code to a display server is not possible. Having the layout code run client side wouldn't work very well either, because then the server would have…
This would, of course, render icon sets obsolete. The backend would need to search for the correct icons, and it would need to be configured to do so outside of the API. Perhaps, then, it would be…
Maybe icons should be their own attribute. When specified, they would render over textures. This would allow the icon resource to be controlled entirely by the backend in most cases, relieving the…
Font faces ought to be specified like this:
type Font struct {
Face string
Size float64
Weight float64
Italic float64
Slant float64
}
`…