**Yazi Integration Fixes:** - Fixed y() function in .zshrc to prevent shell exit when quitting Yazi - Updated kitty-yazi.sh script to use AppleScript for proper tab creation - Script now focuses existing Kitty window and creates new tab instead of new window **Kitty Configuration Enhancements:** - Added advanced font rendering with ligature support - Improved cursor animations and visual effects - Enhanced tab bar with powerline styling and fade effects - Added background blur and better transparency handling - Optimized performance settings (rendering delays, scrolling) - Added comprehensive keyboard shortcuts for window/tab management - Improved URL handling and text selection features - Added notification system for long-running commands 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
508 B
Bash
Executable File
21 lines
508 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
# User Configuration
|
|
USER="AK127132" # Insert Your AK Number
|
|
PASSWORD="enzfcj4bhg!mwr8BUH" # Insert your password
|
|
SERVER="140.78.8.107"
|
|
SHARE1="TNGROUP/tn-group/ipec"
|
|
SHARE2="TNHOME/home/AK127132"
|
|
|
|
# Mount TNGROUP
|
|
echo "Mounting TNGROUP..."
|
|
osascript -e "try" -e "mount volume \"smb://$USER:$PASSWORD@$SERVER/$SHARE1\"" -e "end try"
|
|
|
|
# Mount TNHOME
|
|
echo "Mounting TNHOME..."
|
|
osascript -e "try" -e "mount volume \"smb://$USER:$PASSWORD@$SERVER/$SHARE2\"" -e "end try"
|
|
|
|
echo "Mounting complete."
|
|
|
|
|