feat: nb performance tweaks

This commit is contained in:
2025-10-15 11:39:29 +02:00
parent df6465fa8a
commit 356c049aaf
4 changed files with 22 additions and 12 deletions

View File

@@ -17,7 +17,12 @@
flatpak install --system -y --noninteractive --or-update flathub io.github.yuki_iptv.yuki-iptv
flatpak install --system -y --noninteractive --or-update flathub com.google.AndroidStudio
flatpak run --command=bash com.google.AndroidStudio -c 'curl -fsSL https://claude.ai/install.sh | bash'
# Only run claude.ai install script once
STAMP_FILE="/var/lib/flatpak-android-studio-claude-installed"
if [ ! -f "$STAMP_FILE" ]; then
flatpak run --command=bash com.google.AndroidStudio -c 'curl -fsSL https://claude.ai/install.sh | bash' && touch "$STAMP_FILE"
fi
'';
};