Skip to content

Instantly share code, notes, and snippets.

View soethihatun's full-sized avatar
🎯
Focusing

Soe Thiha Tun soethihatun

🎯
Focusing
View GitHub Profile
@soethihatun
soethihatun / adb_anim_on.sh
Created September 29, 2021 09:01
adb command: turn on AVD animation from a mac terminal
#!/bin/sh
adb shell settings put global window_animation_scale 1
adb shell settings put global transition_animation_scale 1
adb shell settings put global animator_duration_scale 1
@soethihatun
soethihatun / adb_anim_off.sh
Last active September 29, 2021 09:00
adb command: turn off AVD animation from a mac terminal
#!/bin/sh
adb shell settings put global window_animation_scale 0
adb shell settings put global transition_animation_scale 0
adb shell settings put global animator_duration_scale 0