Skip to content

Commit

Permalink
buffer.lisp: Use reader macro.
Browse files Browse the repository at this point in the history
This allows the svgs to be persisted within the image.
  • Loading branch information
jmercouris committed Aug 2, 2023
1 parent bbf8d8f commit 268e4e3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions source/buffer.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -771,14 +771,14 @@ Also see `panel-page'."))
(display-tabs-by-last-access-p
nil
:documentation "Whether tabs are dynamically ordered by last access time.")
(glyph-left (alexandria:read-file-into-string
(asdf:system-relative-pathname :nyxt "assets/left.svg")))
(glyph-right (alexandria:read-file-into-string
(asdf:system-relative-pathname :nyxt "assets/right.svg")))
(glyph-reload (alexandria:read-file-into-string
(asdf:system-relative-pathname :nyxt "assets/reload.svg")))
(glyph-lambda (alexandria:read-file-into-string
(asdf:system-relative-pathname :nyxt "assets/lambda.svg")))
(glyph-left #.(alexandria:read-file-into-string
(asdf:system-relative-pathname :nyxt "assets/left.svg")))
(glyph-right #.(alexandria:read-file-into-string
(asdf:system-relative-pathname :nyxt "assets/right.svg")))
(glyph-reload #.(alexandria:read-file-into-string
(asdf:system-relative-pathname :nyxt "assets/reload.svg")))
(glyph-lambda #.(alexandria:read-file-into-string
(asdf:system-relative-pathname :nyxt "assets/lambda.svg")))
(style (theme:themed-css (theme *browser*)
`(body
:line-height "24px"
Expand Down

0 comments on commit 268e4e3

Please sign in to comment.