-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathandroid.plugin.zsh
166 lines (147 loc) · 4.59 KB
/
android.plugin.zsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
[[ $ANDROID_HOME == "" ]] && echo "android-ohmyzsh: ANDROID_HOME enviroment variable is missing!"
export PATH=$ANDROID_HOME/platform-tools:$PATH
export PATH=${PATH}:${ANDROID_HOME}/tools
export PATH=${PATH}:${ANDROID_HOME}/platform-tools
# Shorthand for adb devices
function adbd {
adb devices
}
# Shorthand for adb kill-server
function adbrip {
adb kill-server
}
# Start an emulator for a list of available ones.
function aemu {
EMU=$($ANDROID_HOME/emulator/emulator -list-avds | fzf)
echo "Starting $EMU"
($ANDROID_HOME/emulator/emulator -no-audio -no-skin -avd $EMU &) &> /dev/null
}
# Writes text on device
# adbpaste - takes text from macOS clipboard and writes that.
# adbpaste "hello" – uses the provided arg as text.
function adbpaste {
if [ -n "$1" ]; then
TEXT=$1
else
TEXT=`pbpaste`
fi
TEXT=`echo "$TEXT" | sed 's/ /\%s/g' | sed 's/"/\\\\"/g'`
adb shell input text "$TEXT"
}
# Automatically starts debuging session if device is connetted on the same network.
function adbc {
IP=`adb shell ifconfig wlan0 | grep 'inet addr:' | cut -d: -f2 | awk '{print $1}'`
adb tcpip 5555
adb connect $IP
adb devices
}
# Disable Andorid animations
function adbnoanim {
adb shell settings put global window_animation_scale 0.0
adb shell settings put global transition_animation_scale 0.0
adb shell settings put global animator_duration_scale 0.0
}
# Enbled Andorid animations
function adbyesanim {
adb shell settings put global window_animation_scale 1.0
adb shell settings put global transition_animation_scale 1.0
adb shell settings put global animator_duration_scale 1.0
}
# Replaces System UI with vanilla mocked state.
function adbdemo {
CMD=$1
echo $CMD
if [ $CMD = "on" ]; then
adb shell settings put global sysui_demo_allowed 1
adb shell am broadcast -a com.android.systemui.demo -e command enter || exit
adb shell am broadcast -a com.android.systemui.demo -e command clock -e hhmm 0800
adb shell am broadcast -a com.android.systemui.demo -e command battery -e plugged false
adb shell am broadcast -a com.android.systemui.demo -e command battery -e level 100
adb shell am broadcast -a com.android.systemui.demo -e command network -e wifi show -e level 4
adb shell am broadcast -a com.android.systemui.demo -e command network -e mobile show -e datatype none -e level 4
adb shell am broadcast -a com.android.systemui.demo -e command notifications -e visible false
elif [ $CMD = "off" ]; then
adb shell am broadcast -a com.android.systemui.demo -e command exit
else
echo 'Mising argument of "on" or "off"'
fi
}
# Fuzzy search for app by package name
function appfind {
adb shell 'pm list packages -f' | sed -e 's/.*=//' | fzf
}
# Fuzzy search for app to open on device by package name
function appopen {
for P in $(appfind)
do
echo "$P"
adb shell monkey -p $P -c android.intent.category.LAUNCHER 1
done
}
# Fuzzy search for app to kill by package name
function appkill {
for P in $(appfind)
do
PID=`adb shell ps | grep $P | awk '{print $2}'`
EX="adb shell run-as $P kill $PID"
echo $EX
print -s $EX
eval $EX
done
}
# Fuzzy search for app to clear by package name
function appclear {
for P in $(appfind)
do
EX="adb shell pm clear $P"
echo $EX
history -s $EX
eval $EX
done
}
# Fuzzy search for app to uninstall by package name
function appuninstall {
for P in $(appfind)
do
EX="adb shell pm uninstall $P"
echo $EX
print -s $EX
eval $EX
done
}
# Takes a screenshot
# adbscr saves and opens a file (supports Linux and macOS)
# adbscr --save saves a file into currenct directory.
function adbscr {
OPEN_FLAG=1
FILE_NAME="screen.png"
SAVE_DIR=/tmp/adbscr/
if [ ! -d "$SAVE_DIR" ]; then
mkdir $SAVE_DIR
fi
SAVE_PATH=$SAVE_DIR$FILE_NAME
if [[ $* == *--save* ]]; then
OPEN_FLAG=0
FILE_NAME=`date +%Y_%m_%d-%H_%M_%s`".png"
SAVE_PATH="./"$FILE_NAME
echo "Saving to: "$SAVE_PATH
fi
DEVICE_PATH="/sdcard/"$FILE_NAME
adbdemo on
echo "Shoot"
adb shell screencap -p $DEVICE_PATH
adbdemo off
echo "Pull"
adb pull $DEVICE_PATH $SAVE_PATH
if [[ $OPEN_FLAG == 1 ]]; then
echo "Open "$SAVE_PATH
if [[ "$OSTYPE" == "linux-gnu" ]]; then
xdg-open $SAVE_PATH
elif [[ "$OSTYPE" == "darwin"* ]]; then
open $SAVE_PATH
else
echo "Unsupported OS"
fi
fi
adb shell rm $DEVICE_PATH
}