blob: 77b6555c5fda4430cee5341d0a818e5c1a93ff02 (
plain)
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
|
#!/usr/bin/env zsh
# To use mpv for youtube links
if [[ $1 != "" ]]; then
if printf $1 2>/dev/null | grep -q "youtube.com"; then
mpv "$1"
exit
fi
fi
# scale on highres displays
if [[ $(dpi) -gt 120 ]]; then
SCALE=1.4
else
SCALE=1.0
fi
# maybe use firefox distributed in binary
bin=$(which firefox)
if [[ $? -eq 1 ]]; then
bin=$(which firefox-bin)
fi
# for mutt copy the file before it disappears
case "$1" in
*tmp/pks/mutt/*)
cp $1 $1.html
TZ=UTC GDK_SCALE=$SCALE GDK_DPI_SCALE=$SCALE /usr/bin/env $bin -new-tab $1.html
;;
*)
TZ=UTC GDK_SCALE=$SCALE GDK_DPI_SCALE=$SCALE /usr/bin/env $bin $@
;;
esac
|