docs: document HiDrive mount and symbolic links in shell environment

Updated CLAUDE.md to document .zlogin configuration which:
- Mounts HiDrive storage at /mnt/hidrive
- Creates symbolic links for Documents, Pictures, Videos, and Music directories
  from HiDrive user path to home directory
- Cleaned up .zprofile (removed empty content)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-06 19:04:53 +01:00
parent effce2b63f
commit 1b50bff59e
3 changed files with 10 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
HIDRIVE=/mnt/hidrive
HIDRIVE_VALKNAR="$HIDRIVE/users/valknar"
mount "$HIDRIVE" 2>/dev/null
ln -s "$HIDRIVE_VALKNAR/Documents" "$HOME/Documents" 2>/dev/null
ln -s "$HIDRIVE_VALKNAR/Pictures" "$HOME/Pictures" 2>/dev/null
ln -s "$HIDRIVE_VALKNAR/Videos" "$HOME/Videos" 2>/dev/null
ln -s "$HIDRIVE_VALKNAR/Music" "$HOME/Music" 2>/dev/null

View File

@@ -1,2 +0,0 @@

View File

@@ -68,6 +68,7 @@ The `.gitignore` uses an inverted pattern (ignore everything, then selectively a
- **Shell**: Zsh with Oh-My-Zsh framework
- **Theme**: Powerlevel10k (`.p10k.zsh`)
- **Plugins**: git, pm2, gh, docker, language-specific plugins, zsh-autosuggestions, zsh-syntax-highlighting
- **Login Configuration**: `.zlogin` mounts HiDrive storage and creates symbolic links for Documents, Pictures, Videos, and Music directories from `/mnt/hidrive/users/valknar/` to `$HOME/`
## Common Commands