2021-02-25 00:38:02 +00:00
|
|
|
# The `.wryn` Library
|
2020-02-25 03:03:01 +00:00
|
|
|
|
2021-09-15 08:04:21 +00:00
|
|
|
A compilation of utilities which I use across my machines **this repo is principally for personal utility**.
|
2021-02-25 00:38:02 +00:00
|
|
|
Although I try to build utilities to be dependency aware, the library is considered to be in a good state when it works on my machine.
|
2021-09-15 08:04:21 +00:00
|
|
|
|
2021-02-25 00:38:02 +00:00
|
|
|
Feel free to use or adapt anything you find useful :)
|
2020-02-25 03:03:01 +00:00
|
|
|
|
|
|
|
## File Structure Breakdown
|
2021-09-15 08:04:21 +00:00
|
|
|
### [setup](./setup)
|
|
|
|
The pride and joy of this project.
|
|
|
|
Running the script will set up the appropriate links and RC entries to enable the entire library.
|
|
|
|
|
|
|
|
Relatively robust, but always works best the OS I'm currently using (arch).
|
2020-02-25 03:03:01 +00:00
|
|
|
|
2021-02-25 00:38:02 +00:00
|
|
|
### [config](./config)
|
2021-09-15 08:04:21 +00:00
|
|
|
Configuration files / utilities.
|
|
|
|
The setup script handles all the headache of symlinking each one to the right place.
|
2020-02-25 03:03:01 +00:00
|
|
|
|
2021-02-25 00:38:02 +00:00
|
|
|
### [env](./env)
|
2021-09-15 08:04:21 +00:00
|
|
|
Default configuration used by the rest of the library.
|
|
|
|
You can override the environment by editing `~/.config/wryn/env` files after running setup.
|
2020-02-25 03:03:01 +00:00
|
|
|
|
2021-09-15 08:04:21 +00:00
|
|
|
### [resume](./resume)
|
|
|
|
My working resume in `.tex` format.
|
2020-02-25 03:03:01 +00:00
|
|
|
|
|
|
|
### [latex](./latex)
|
2021-02-25 00:38:02 +00:00
|
|
|
A compilation of LaTeX templates, used by the [`.wryn/zsh/latex`](./zsh/latex) utility.
|
2020-02-25 03:03:01 +00:00
|
|
|
|
2021-02-25 00:38:02 +00:00
|
|
|
Each template is composed of four files: `template.tex`, `body.tex`, `imports.sty`, and `formatting.sty`.
|
2020-03-10 15:12:01 +00:00
|
|
|
The `template.tex` file is the parent of the document, and thus the target of the latex compiler.
|
|
|
|
This can be renamed to match the document title, but typically does not contain the document body.
|
2021-02-25 00:39:41 +00:00
|
|
|
Every template will use the same parent `template.tex` file, so this is found at the `~/.wryn/latex` directory root.
|
2020-03-10 15:12:01 +00:00
|
|
|
|
2020-02-25 03:03:01 +00:00
|
|
|
### [vim](./vim)
|
2021-02-25 00:38:02 +00:00
|
|
|
Contains keybindings, dictionary binary, and custom plugins for `vim`.
|
2020-02-25 03:03:01 +00:00
|
|
|
|
2021-02-25 00:38:02 +00:00
|
|
|
### [zsh](./zsh)
|
2021-09-15 08:04:21 +00:00
|
|
|
Contains (a mess of) `zsh` aliases and functions used directly by a terminal user.
|
2021-02-25 00:38:02 +00:00
|
|
|
The [`.wryn/zsh/rc`](./zsh/rc), which loads the custom `zsh` modules is sourced directly from the user RC.
|
|
|
|
Any OS specific utilities are nested in appropriately named directories.
|
2021-09-15 08:04:21 +00:00
|
|
|
...this will be hacked to pieces very soon
|
2020-02-25 03:03:01 +00:00
|
|
|
|
2021-09-15 08:04:21 +00:00
|
|
|
### [freeze](./freeze)
|
|
|
|
A historical list of packages used on personal machines.
|
|
|
|
Also contains machine-specific `systemd` daemons for managing hardware-specific issues.
|
|
|
|
...this will likely move to a cloud storage soon.
|