blob: 0c0862bd90dd79d3cd6747c2ae13286afd13816e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env zsh
if [[ $(dpi) -gt 120 ]]; then
SCALE=1.4
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 $@
|