Also install fonts when installing grub (#144)

This commit is contained in:
Itxaka
2023-09-13 11:07:28 +02:00
committed by GitHub
parent 0afdf76278
commit 274701a3ac
3 changed files with 47 additions and 21 deletions

View File

@@ -31,6 +31,7 @@ type Client struct {
func NewClient() *Client {
client := grab.NewClient()
client.UserAgent = "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/117.0"
client.HTTPClient = &http.Client{Timeout: time.Second * constants.HTTPTimeout}
return &Client{client: client}
}