blob: 9b47a244b11f58424a81d437bc78398bedcd3931 (
about) (
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
|
(in-package #:nyxt-user)
(define-configuration :status-buffer
"Display modes as short glyphs."
((glyph-mode-presentation-p t)))
;(define-configuration :force-https-mode ((glyph "ϕ")))
(define-configuration :user-script-mode ((glyph "u")))
(define-configuration :blocker-mode ((glyph "β")))
(define-configuration :proxy-mode ((glyph "π")))
(define-configuration :reduce-tracking-mode ((glyph "τ")))
(define-configuration :certificate-exception-mode ((glyph "χ")))
(define-configuration :style-mode ((glyph "ϕ")))
(define-configuration :cruise-control-mode ((glyph "σ")))
(define-configuration status-buffer
"Hide most of the status elements but URL and modes."
((style (str:concat
%slot-value%
(theme:themed-css (theme *browser*)
`("#controls,#tabs"
:display none !important))))))
(defmethod format-status-load-status ((status status-buffer))
"A fancier load status."
(spinneret:with-html-string
(:span (if (and (current-buffer)
(web-buffer-p (current-buffer)))
(case (slot-value (current-buffer) 'nyxt::status)
(:unloaded "∅")
(:loading "∞")
(:finished ""))
""))))
|