mirror of
https://git.davidovski.xyz/dot.git
synced 2024-08-15 00:43:28 +00:00
10 lines
280 B
Bash
Executable file
10 lines
280 B
Bash
Executable file
#!/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
|
|
|