First commit, added versioning and repo structure

main
capntack 1 year ago
parent 014681ab46
commit 6ba28ea750

@ -0,0 +1,24 @@
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <https://unlicense.org>

@ -1,3 +1,139 @@
# PC-Directory-Structure
# PC Directory Structure
The directory structure I use on my computers.
> **Thank you for visiting!** If you are viewing this repo on GitHub or GitLab, please note that this is just a mirror. Please visit the [originating repo](https://tacksupport.net/git/Tack-Support/PC-Directory-Structure) for any comments, issues, pull requests, etc. You can sign in with your GitHub or GitLab account via Oauth2.
<br>
<details>
<summary>Legend</summary>
### Legend
- **root-directory-name** >> description of directory
- **dir-with-explanation** >> description of directory
> Explanation
- **symlink-source** >> description of directory
> symlinked to "path/to/where/symlink/is/sent"
- **symlink-dest** >> description of directory
> symnlink of "path/to/where/symlink/is/from"
> Further explanation
- **some-dir** >> description of directory
- ${PLACE_HOLDER_FOR_SUBDIRS}
- ./file-name >> description of file
</details>
<br>
### Linux Structure for v1.0.0
- **$HOME**
- **source-of-truth** >> second brain root directory
- **00-inbox** >> default Desktop directory
- **downloads** >> default Downloads directory
- **scans** >> for printer/scanner to upload to
- **screenshots** >> for screenshot util to upload to
- **tmp** >> for "RAM" work
- **10-projects** >> "P" in PARA
- ${PROJECT-DIRECTORIES}
- **20-areas** >> 1st "A" in PARA
- ${AREA-DIRECTORIES}
- **30-resources** >> "R" in PARA
- **40-archives** >> 2nd "A" in PARA
- **filing-cabinet** >> for documents you would put in a physical filing cabinet
> symlinked to "$HOME/50-user-dirs/documents/"
- **manuals** >> for storing home/office manuals
- **glacial** >> for long term storage
> symlinked to "$HOME/50-user-dirs/documents/"
> CD to where the directories/files to be archived are, and archive thusly:
> ```bash
> tar cf ${ARCHIVE_NAME}.tar.xz \
> --use-compress-program='xz -9v' \
> /path/to/glacial/${DIR_OR_FILE_TO_ARCHIVE}
> ```
- **50-user-dirs** user/profile directories
- **audiobooks** >> self-explanatory
- **bookmarks** >> symlinks to directories & files deep in the OS file system
- **documents** >> default Documents directory
- **filing-cabinet** >> for documents you would put in a physical filing cabinet
> symlink of "$HOME/40-archives/filing-cabinet"
- **glacial** >> for long term storage
> symlink of "$HOME/40-archives/glacial"
- **obsidian-vaults** >> place Obsidian.md vaults here
- ${VAULT-DIRECTORIES}
- **templates** >> default Templates directory
- **ebooks** >> self-explanatory
- **images** >> default Pictures directory
- **music** >> default Music directory
- **shares** >> a directory to place shared directories in
- **cloud-shares** >> a directory to place cloud share directories in
- ${CLOUD-SHARE-DIRECTORIES}
- **network-shares** >> to "co-locate" your network shares with other shares
> symlink of "/mnt"
- **p2p-shares** >> a directory to place peer to peer shared directories in
- ${P2P-SHARE-DIRECTORIES}
- **public-directory** >> default Public directory
- **videos** >> default Videos directory
- **60-programs** >> portable apps and the like
- **70-devmin** >> to do any dev/git/etc work out of
- **repos** >> for git/svc/etc repos
- ${VERSION-CONTROL-SYSTEM-DIRECTORIES}
- ${PROJECT-DIRECTORIES}
- **scripts** >> place scripts in here and either add to path or copy script files from here to a dir in path
- **vsc-workspaces** >> place VSCod[e|ium] workspace files in here
- ./scratchpad.md >> a junk file use as a scratchpad
*Note:* To modify the default user directories on Linux, edit the `user-dirs.dirs` file, often located in `$HOME/.config/`. You cannot add directories to the config file, but you can edit the paths of the existing ones. They must be relative to `$HOME` and changes will take effect after relogging.
<br>
### Windows Structure for v1.0.0
- **$HOME**
- **source-of-truth** >> second brain root directory
- **00-inbox** >> default Desktop directory
- **downloads** >> default Downloads directory
- **scans** >> for printer/scanner to upload to
- **screenshots** >> for screenshot util to upload to
- **tmp** >> for "RAM" work
- **10-projects** >> "P" in PARA
- ${PROJECT-DIRECTORIES}
- **20-areas** >> 1st "A" in PARA
- ${AREA-DIRECTORIES}
- **30-resources** >> "R" in PARA
- **40-archives** >> 2nd "A" in PARA
- **filing-cabinet** >> for documents you would put in a physical filing cabinet
> symlinked to "$HOME/50-user-dirs/documents/"
- **manuals** >> for storing home/office manuals
- **glacial** >> for long term storage
> symlinked to "$HOME/50-user-dirs/documents/"
> Archive directories/files using [7zip](https://www.7-zip.org). First "Add to archive..." as a .tar, then again as an .xz with Ultra Compression Level. Then move the archive here.
- **50-user-dirs** user/profile directories
- **audiobooks** >> self-explanatory
- **bookmarks** >> symlinks to directories & files deep in the OS file system
- **documents** >> default Documents directory
- **filing-cabinet** >> for documents you would put in a physical filing cabinet
> symlink of "$HOME/40-archives/filing-cabinet"
- **glacial** >> for long term storage
> symlink of "$HOME/40-archives/glacial"
- **obsidian-vaults** >> place Obsidian.md vaults here
- ${VAULT-DIRECTORIES}
- **templates** >> simply here for parity between Linux & Windows setups
- **ebooks** >> self-explanatory
- **images** >> default Pictures directory
- **music** >> default Music directory
- **shares** >> a directory to place shared directories in
- **cloud-shares** >> a directory to place cloud share directories in
- ${CLOUD-SHARE-DIRECTORIES}
- **network-shares** >> to "co-locate" your network shares with other shares
> need to verify method of showing those here
- **p2p-shares** >> a directory to place peer to peer shared directories in
- ${P2P-SHARE-DIRECTORIES}
- **public-directory** >> simply here for parity between Linux & Windows setups
- **videos** >> default Videos directory
- **60-programs** >> portable apps and the like
- **70-devmin** >> to do any dev/git/etc work out of
- **repos** >> for git/svc/etc repos
- ${VERSION-CONTROL-SYSTEM-DIRECTORIES}
- ${PROJECT-DIRECTORIES}
- **scripts** >> place scripts in here and either add to path or copy script files from here to a dir in path
- **vsc-workspaces** >> place VSCod[e|ium] workspace files in here
- ./scratchpad.md >> a junk file use as a scratchpad
*Note:* To modify the default user directories on Windows, rename them first, then move them in a top down order (i.e. move Downloads into Desktop after having already moved Desktop) to avoid any weirdness. Rename using [these directions](https://superuser.com/a/1578148).

@ -0,0 +1,3 @@
# Roadmap
- Verify a method for the equivalent of symlinking "/mnt" in "$HOME/source-of-truth/50-usr-dirs/shares/" on Windows

@ -0,0 +1,38 @@
# Prior Versions
<details>
<summary>Windows v0.1.0</summary>
### Windows Structure for v0.1.0
- **Documents** >> default Documents directory
- **!Source of Truth** >> second brain root directory
- **00-Inbox** >> default Desktop directory
- **!Downloads** >> default Downloads directory
- **!Scans** >> for printer/scanner to upload to
- **!Screenshots** >> for screenshot util to upload to
- **!Workbench** >> for "RAM" work
- **10-Projects** >> "P" in PARA
- ${PROJECT-FOLDERS}
- **20-Areas** >> 1st "A" in PARA
- ${AREA-FOLDERS}
- **30-Resources** >> "R" in PARA
- **!Media**
- **Audiobooks** >> self-explanatory
- **eBooks** >> self-explanatory
- **Music** >> default Music directory
- **Pictures** >> default Pictures directory
- **Videos** >> default Vidoes directory
- **Manuals** >> for storing home/office manuals
- **40-Archives** >> 2nd "A" in PARA
- **!Backups** >> for storing random backups
- **!Filing Cabinet** >> for documents you would put in a physical filing cabinet
- **50-Device Files** >> various files specific to the device? (wasn't well defined)
- **Device Shares** >> Syncthing device shares
- **Obsidian Vaults** >> place Obsidian.md vaults here
- ${OBSIDIAN-VAULTS}
- **Saved Games** >> default Saved Games directory
- **60-Programs** >> portable apps and the like
- **70-Repos** >> to do any dev/git/etc work out of
*Note:* To modify the default user directories on Windows, rename them first, then move them in a top down order (i.e. move Downloads into Desktop after having already moved Desktop) to avoid any weirdness. Rename using [these directions](https://superuser.com/a/1578148).
</details>
Loading…
Cancel
Save