Commit 2f91237f5fe2

Vincent Demeester <vincent@sbr.pm>
2026-04-16 11:29:33
fix: set zsh as default shell in sync scripts
1 parent 1492dce
Changed files (2)
android
android/osaka/sync.sh
@@ -40,6 +40,9 @@ done
 echo "==> Reloading Termux settings..."
 termux-reload-settings 2>/dev/null || true
 
+echo "==> Setting zsh as default shell..."
+chsh -s zsh 2>/dev/null || true
+
 echo "==> Pulling latest from repo..."
 (cd ~/src/home && git pull --ff-only 2>/dev/null || echo "  ⚠️  Could not fast-forward, run git pull manually")
 
android/suzu/sync.sh
@@ -38,6 +38,9 @@ done
 echo "==> Reloading Termux settings..."
 termux-reload-settings 2>/dev/null || true
 
+echo "==> Setting zsh as default shell..."
+chsh -s zsh 2>/dev/null || true
+
 echo "==> Pulling latest from repo..."
 (cd ~/src/home && git pull --ff-only 2>/dev/null || echo "  ⚠️  Could not fast-forward, run git pull manually")