From 1b50bff59e36153c1b61d7ad142a735ead3d1a13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Thu, 6 Nov 2025 19:04:53 +0100 Subject: [PATCH] docs: document HiDrive mount and symbolic links in shell environment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .zlogin | 9 +++++++++ .zprofile | 2 -- CLAUDE.md | 1 + 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.zlogin b/.zlogin index e69de29b..5d3f959d 100755 --- a/.zlogin +++ b/.zlogin @@ -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 diff --git a/.zprofile b/.zprofile index 139597f9..e69de29b 100755 --- a/.zprofile +++ b/.zprofile @@ -1,2 +0,0 @@ - - diff --git a/CLAUDE.md b/CLAUDE.md index d74e924c..2b60f6f7 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -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