Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/samrocketman/home

This is a git repository for my home directory - encryption and other helpful scripts
https://github.com/samrocketman/home

bash bashrc dotfiles hacktoberfest shell

Last synced: 3 days ago
JSON representation

This is a git repository for my home directory - encryption and other helpful scripts

Awesome Lists containing this project

README

        

# home

In other words files for my `$HOME`. This is a handy little git repository I
use to track all of the files I use in day to day work and personal development.

## List of README files.

Here is a summary of README files in this repository where you can learn more
about that area.

- [bin/README.md](bin/README.md)
- [desktop/README.md](desktop/README.md)
- [raspi/README.md](raspi/README.md)

# Program usage tips

Documentation on advanced usage of different programs I enjoy using (a.k.a.
cheatsheets).

- [tips/bash.md](tips/bash.md)
- [tips/docker.md](tips/docker.md)
- [tips/git.md](tips/git.md)
- [tips/gpg.md](tips/gpg.md)
- [tips/irssi.md](tips/irssi.md)
- [tips/ssh.md](tips/ssh.md)
- [tips/vim.md](tips/vim.md)

# Other directories

- `bin/` - This is user bin scripts I put in my ~/bin directory.
- `dotfiles/` - Some common dotfiles which I personally like to customize.

# Generate above lists

Generate bullet list of readme files:

```bash
find * -mindepth 1 -type f -iname 'readme*' -exec echo "- [{}]({})" \;
```

Generate bullet list of cheatsheets:

```bash
find tips -type f -iname "*.md" -exec echo "- [{}]({})" \;
```