blob: 452b7bd66b7706aec9d1b8c4e54f774949ee819f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env zsh
if [[ $(dpi) -gt 120 ]]; then
SCALE=1.25
else
SCALE=1.0
fi
CHROME=/opt/google/chrome/google-chrome
GDK_DPI_SCALE=$SCALE $CHROME --disk-cache-dir=/tmp/cache --reset-variation-state --disable-sync-preferences --process-per-site --disable-reading-from-canvas --start-maximized $@
|