-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathreSnap.sh
executable file
·242 lines (209 loc) · 6.26 KB
/
reSnap.sh
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
#!/bin/sh
version="v2.5.2"
# create temporary directory
tmp_dir="/tmp/reSnap"
if [ ! -d "$tmp_dir" ]; then
mkdir "$tmp_dir"
fi
# default values
ip="${REMARKABLE_IP:-10.11.99.1}"
output_file="$tmp_dir/snapshot_$(date +%F_%H-%M-%S).png"
delete_output_file="true"
display_output_file="${RESNAP_DISPLAY:-true}"
color_correction="${RESNAP_COLOR_CORRECTION:-true}"
byte_correction="${RESNAP_BYTE_CORRECTION:-true}"
invert_colors="${REMARKABLE_INVERT_COLORS:-false}"
filters="null"
copy_to_clipboard="false"
construct_sketch="false"
# parsing arguments
while [ $# -gt 0 ]; do
case "$1" in
-l | --landscape)
filters="$filters,transpose=1"
shift
;;
-s | --source)
ip="$2"
shift
shift
;;
-o | --output)
output_file="$2"
delete_output_file="false"
shift
shift
;;
-d | --display)
display_output_file="true"
shift
;;
-n | --no-display)
display_output_file="false"
shift
;;
-x | --clipboard)
copy_to_clipboard="true"
shift
;;
-f | --sketch)
construct_sketch="true"
shift
;;
-c | --og-color)
color_correction="false"
shift
;;
-p | --og-pixel-format)
byte_correction="false"
shift
;;
-i | --invert-colors)
invert_colors="true"
;;
-v | --version)
echo "$0 version $version"
exit 0
;;
-h | --help | *)
echo "Usage: $0 [-l] [-d] [-n] [-v] [-x] [-f] [--source <ssh-host>] [--output <output-file>] [-h]"
echo "Examples:"
echo " $0 # snapshot in portrait"
echo " $0 -l # snapshot in landscape"
echo " $0 -s 192.168.2.104 # snapshot over wifi"
echo " $0 -o snapshot.png # saves the snapshot in the current directory"
echo " $0 -d # display the file"
echo " $0 -n # don't display the file"
echo " $0 -c # no color correction (reMarkable2)"
echo " $0 -x # Copy snapshot to clipboard also"
echo " $0 -f # Remove white background"
echo " $0 -p # no pixel format correction (reMarkable2 version < 3.6)"
echo " $0 -v # displays version"
echo " $0 --sketch # Construct sketc"
echo " $0 -i # Invert colors"
echo " $0 -h # displays help information (this)"
exit 2
;;
esac
done
if [ "$display_output_file" != "true" ]; then
delete_output_file="false"
fi
if [ "$delete_output_file" = "true" ]; then
# delete temporary file on exit
trap 'rm -f $output_file' EXIT
fi
# ssh command
ssh_host="root@$ip"
ssh_cmd() {
ssh -o ConnectTimeout=1 "$ssh_host" "$@"
}
# check if we are able to reach the reMarkable
if ! ssh_cmd true; then
echo "$ssh_host unreachable"
exit 1
fi
rm_version="$(ssh_cmd cat /sys/devices/soc0/machine)"
# technical parameters
if [ "$rm_version" = "reMarkable 1.0" ]; then
# calculate how much bytes the window is
width=1408
height=1872
bytes_per_pixel=2
window_bytes="$((width * height * bytes_per_pixel))"
# read the first $window_bytes of the framebuffer
head_fb0="dd if=/dev/fb0 count=1 bs=$window_bytes 2>/dev/null"
# pixel format
pixel_format="rgb565le"
elif [ "$rm_version" = "reMarkable 2.0" ]; then
# calculate how much bytes the window is
width=1872
height=1404
# pixel format
if [ "$byte_correction" = "true" ]; then
bytes_per_pixel=2
pixel_format="gray16"
filters="$filters,transpose=3" # 90° clockwise and vertical flip
else
bytes_per_pixel=1
pixel_format="gray8"
filters="$filters,transpose=2" # 90° counter-clockwise
fi
window_bytes="$((width * height * bytes_per_pixel))"
# Find xochitl's process. In case of more than one pids, take the first one which contains /dev/fb0.
for n in $(ssh_cmd pidof xochitl); do
pid=$n
has_fb=$(ssh_cmd "grep -C1 '/dev/fb0' /proc/$pid/maps")
if [ "$has_fb" != "" ]; then
break
fi
done
# find framebuffer location in memory
# it is actually the map allocated _after_ the fb0 mmap
read_address="grep -C1 '/dev/fb0' /proc/$pid/maps | tail -n1 | sed 's/-.*$//'"
skip_bytes_hex="$(ssh_cmd "$read_address")"
skip_bytes="$((0x$skip_bytes_hex + 7))"
# remarkable's dd does not have iflag=skip_bytes, so cut the command in two:
# one to seek the exact amount and the second to copy in a large chunk
# bytes are located in, and then we trim the resulting data with what we need.
head_fb0="{ dd bs=1 skip=$skip_bytes count=0 && dd bs=$window_bytes count=1; } < /proc/$pid/mem 2>/dev/null"
# color correction
if [ "$color_correction" = "true" ]; then
filters="$filters,curves=all=0.045/0 0.06/1"
fi
else
if [ "$rm_version" = "reMarkable Ferrari" ]; then
rm_version="reMarkable Paper Pro"
fi
echo "$rm_version not supported"
exit 2
fi
if [ "$invert_colors" = "true" ]; then
filters="$filters,negate"
fi
# don't remove, related to this pr
# https://github.com/cloudsftp/reSnap/pull/6
FFMPEG_ABS="$(command -v ffmpeg)"
LZ4_ABS="$(command -v lz4)"
decompress="${LZ4_ABS} -d"
# compression commands
if ssh_cmd "[ -f /opt/bin/lz4 ]"; then
compress="/opt/bin/lz4"
elif ssh_cmd "[ -f ~/lz4 ]"; then # backwards compatibility
compress="\$HOME/lz4"
else
echo
echo "WARNING: lz4 not found on $rm_version."
echo " It is recommended to install it for vastly improved performance."
echo " Please refer to the README."
echo
compress="tee"
decompress="tee"
fi
# read and compress the data on the reMarkable
# decompress and decode the data on this machine
ssh_cmd "$head_fb0 | $compress" |
$decompress |
"${FFMPEG_ABS}" -y \
-f rawvideo \
-pixel_format $pixel_format \
-video_size "$width,$height" \
-i - \
-vf "$filters" \
-frames:v 1 "$output_file"
if [ "$construct_sketch" = "true" ]; then
echo "Constructing sketch"
magick "${output_file}" -fill white -draw 'rectangle 0,0 100,100' \
-fill white -draw "rectangle 0,1870 2,1872" \
-transparent white -trim -resize 50% +repage "${output_file}"
output_file=$(realpath "${output_file}")
fi
# Copy to clipboard
if [ "$copy_to_clipboard" = "true" ]; then
echo "Copying to clipboard"
xclip -selection clipboard -t image/png -i "${output_file}"
fi
if [ "$display_output_file" = "true" ]; then
# show the snapshot
feh --fullscreen "$output_file"
fi