Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haruki-nikaidou/mem-yaml
Anki's alternative for who hates GUI and mouse clicks
https://github.com/haruki-nikaidou/mem-yaml
anki
Last synced: 13 days ago
JSON representation
Anki's alternative for who hates GUI and mouse clicks
- Host: GitHub
- URL: https://github.com/haruki-nikaidou/mem-yaml
- Owner: haruki-nikaidou
- License: mit
- Created: 2024-10-21T22:13:05.000Z (15 days ago)
- Default Branch: master
- Last Pushed: 2024-10-22T02:34:21.000Z (15 days ago)
- Last Synced: 2024-10-22T17:00:07.664Z (14 days ago)
- Topics: anki
- Language: Rust
- Homepage: https://crates.io/crates/mem-yaml
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mem YAML
Anki's alternative for who hates GUI and mouse clicks.
*This project is in early stage. If there are more than 5 users, I'll finish it.*
## Installation
### Install with cargo:
```sh
cargo install mem-yaml
```### Install with nix flakes:
in `flake.nix`
```nix
{
inputs.mem-yaml.url = "github:haruki-nikaidou/mem-yaml";
}
```in `configuration.nix`
```nix
{ pkgs, inputs, ... }:
{
environment.systemPackages = with pkgs; [
inputs.mem-yaml.packages.${pkgs.system}.mem-yaml
];
}
```or, if you use home manager
```nix
{ pkgs, inputs, ... }:
{
home.packages = with pkgs; [
inputs.mem-yaml.packages.${pkgs.system}.mem-yaml
];
}
```