blob: eef2a2f092357dc1b8f8da3e5d9270ef0dd844bf (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
startpage=${1:-https://search.davidovski.xyz/}
bin="$(which links || which xlinks)"
[ "${#DISPLAY}" = "0" ] || opts="-g -html-g-text-color 0xf58f44 -html-g-background-color 0x191919 -font /home/david/.fonts/ttf-mononoki/mononoki-Regular.ttf"
$bin $opts $startpage
|