snapshot fixes
@@ -39,12 +39,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
- Added `textual.lazy.Reveal` https://github.com/Textualize/textual/pull/5226
|
||||
- Added `Screen.action_blur` https://github.com/Textualize/textual/pull/5226
|
||||
- `Click` events can now be used with the on decorator to match the initially clicked widget
|
||||
|
||||
### Changed
|
||||
|
||||
- Breaking change: Removed `App.dark` reactive attribute https://github.com/Textualize/textual/pull/5087
|
||||
- Breaking change: To improve consistency, several changes have been made to default widget CSS and the CSS variables which ship with Textual. On upgrading, your app will likely look different. All of these changes can be overidden with your own CSS. https://github.com/Textualize/textual/pull/5087
|
||||
|
||||
### Removed
|
||||
|
||||
- Removed `App.HOVER_EFFECTS_SCROLL_PAUSE`
|
||||
|
||||
## [0.85.2] - 2024-11-02
|
||||
|
||||
- Fixed broken focus-within https://github.com/Textualize/textual/pull/5190
|
||||
|
||||
@@ -571,6 +571,7 @@ class CommandPalette(SystemModalScreen[None]):
|
||||
height: 100%;
|
||||
visibility: hidden;
|
||||
background: $surface;
|
||||
&:dark { background: $panel-darken-1; }
|
||||
}
|
||||
|
||||
CommandPalette #--input {
|
||||
|
||||
@@ -13,7 +13,7 @@ DIGITS3X3_BOLD = """\
|
||||
┏━┓
|
||||
┃ ┃
|
||||
┗━┛
|
||||
┓
|
||||
╺┓
|
||||
┃
|
||||
╺┻╸
|
||||
╺━┓
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from textual import events
|
||||
from textual import events, on
|
||||
from textual.message import Message
|
||||
from textual.reactive import reactive
|
||||
from textual.widget import Widget
|
||||
@@ -30,5 +30,10 @@ class ListItem(Widget, can_focus=False):
|
||||
self.post_message(self._ChildClicked(self))
|
||||
|
||||
def watch_highlighted(self, value: bool) -> None:
|
||||
print("highlighted", value)
|
||||
self.set_class(value, "--highlight")
|
||||
self.set_class(value, "-highlight")
|
||||
|
||||
@on(events.Enter)
|
||||
@on(events.Leave)
|
||||
def on_enter_or_leave(self, event: events.Enter | events.Leave) -> None:
|
||||
event.stop()
|
||||
self.set_class(self.is_mouse_over, "-hovered")
|
||||
|
||||
@@ -39,19 +39,23 @@ class ListView(VerticalScroll, can_focus=True, can_focus_children=False):
|
||||
height: auto;
|
||||
overflow: hidden hidden;
|
||||
width: 1fr;
|
||||
|
||||
&.-hovered {
|
||||
background: $block-hover-background;
|
||||
}
|
||||
|
||||
&.--highlight > Widget {
|
||||
&.-highlight {
|
||||
color: $block-cursor-blurred-foreground;
|
||||
background: $block-cursor-blurred-background;
|
||||
text-style: $block-cursor-blurred-text-style;
|
||||
}
|
||||
}
|
||||
|
||||
&:focus > ListItem.--highlight > Widget {
|
||||
&:focus > ListItem.-highlight > Widget {
|
||||
width: 1fr;
|
||||
color: $block-cursor-foreground;
|
||||
background: $block-cursor-background;
|
||||
text-style: $block-cursor-text-style;
|
||||
text-style: $block-cursor-text-style;
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
@@ -19,143 +19,143 @@
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.terminal-1758253465-matrix {
|
||||
.terminal-2368587539-matrix {
|
||||
font-family: Fira Code, monospace;
|
||||
font-size: 20px;
|
||||
line-height: 24.4px;
|
||||
font-variant-east-asian: full-width;
|
||||
}
|
||||
|
||||
.terminal-1758253465-title {
|
||||
.terminal-2368587539-title {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
font-family: arial;
|
||||
}
|
||||
|
||||
.terminal-1758253465-r1 { fill: #8a4346 }
|
||||
.terminal-1758253465-r2 { fill: #868887 }
|
||||
.terminal-1758253465-r3 { fill: #6b546f }
|
||||
.terminal-1758253465-r4 { fill: #e0e0e0 }
|
||||
.terminal-1758253465-r5 { fill: #292929 }
|
||||
.terminal-1758253465-r6 { fill: #c5c8c6 }
|
||||
.terminal-1758253465-r7 { fill: #0178d4 }
|
||||
.terminal-1758253465-r8 { fill: #00ff00 }
|
||||
.terminal-1758253465-r9 { fill: #000000 }
|
||||
.terminal-1758253465-r10 { fill: #8d8d8d }
|
||||
.terminal-1758253465-r11 { fill: #828482 }
|
||||
.terminal-1758253465-r12 { fill: #e0e0e0;font-weight: bold }
|
||||
.terminal-1758253465-r13 { fill: #a5a5a5 }
|
||||
.terminal-2368587539-r1 { fill: #8a4346 }
|
||||
.terminal-2368587539-r2 { fill: #868887 }
|
||||
.terminal-2368587539-r3 { fill: #6b546f }
|
||||
.terminal-2368587539-r4 { fill: #e0e0e0 }
|
||||
.terminal-2368587539-r5 { fill: #292929 }
|
||||
.terminal-2368587539-r6 { fill: #c5c8c6 }
|
||||
.terminal-2368587539-r7 { fill: #0178d4 }
|
||||
.terminal-2368587539-r8 { fill: #00ff00 }
|
||||
.terminal-2368587539-r9 { fill: #000000 }
|
||||
.terminal-2368587539-r10 { fill: #8d8d8d }
|
||||
.terminal-2368587539-r11 { fill: #7e8486 }
|
||||
.terminal-2368587539-r12 { fill: #e0e0e0;font-weight: bold }
|
||||
.terminal-2368587539-r13 { fill: #a1a5a8 }
|
||||
</style>
|
||||
|
||||
<defs>
|
||||
<clipPath id="terminal-1758253465-clip-terminal">
|
||||
<clipPath id="terminal-2368587539-clip-terminal">
|
||||
<rect x="0" y="0" width="975.0" height="584.5999999999999" />
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-0">
|
||||
<clipPath id="terminal-2368587539-line-0">
|
||||
<rect x="0" y="1.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-1">
|
||||
<clipPath id="terminal-2368587539-line-1">
|
||||
<rect x="0" y="25.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-2">
|
||||
<clipPath id="terminal-2368587539-line-2">
|
||||
<rect x="0" y="50.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-3">
|
||||
<clipPath id="terminal-2368587539-line-3">
|
||||
<rect x="0" y="74.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-4">
|
||||
<clipPath id="terminal-2368587539-line-4">
|
||||
<rect x="0" y="99.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-5">
|
||||
<clipPath id="terminal-2368587539-line-5">
|
||||
<rect x="0" y="123.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-6">
|
||||
<clipPath id="terminal-2368587539-line-6">
|
||||
<rect x="0" y="147.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-7">
|
||||
<clipPath id="terminal-2368587539-line-7">
|
||||
<rect x="0" y="172.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-8">
|
||||
<clipPath id="terminal-2368587539-line-8">
|
||||
<rect x="0" y="196.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-9">
|
||||
<clipPath id="terminal-2368587539-line-9">
|
||||
<rect x="0" y="221.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-10">
|
||||
<clipPath id="terminal-2368587539-line-10">
|
||||
<rect x="0" y="245.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-11">
|
||||
<clipPath id="terminal-2368587539-line-11">
|
||||
<rect x="0" y="269.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-12">
|
||||
<clipPath id="terminal-2368587539-line-12">
|
||||
<rect x="0" y="294.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-13">
|
||||
<clipPath id="terminal-2368587539-line-13">
|
||||
<rect x="0" y="318.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-14">
|
||||
<clipPath id="terminal-2368587539-line-14">
|
||||
<rect x="0" y="343.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-15">
|
||||
<clipPath id="terminal-2368587539-line-15">
|
||||
<rect x="0" y="367.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-16">
|
||||
<clipPath id="terminal-2368587539-line-16">
|
||||
<rect x="0" y="391.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-17">
|
||||
<clipPath id="terminal-2368587539-line-17">
|
||||
<rect x="0" y="416.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-18">
|
||||
<clipPath id="terminal-2368587539-line-18">
|
||||
<rect x="0" y="440.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-19">
|
||||
<clipPath id="terminal-2368587539-line-19">
|
||||
<rect x="0" y="465.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-20">
|
||||
<clipPath id="terminal-2368587539-line-20">
|
||||
<rect x="0" y="489.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-21">
|
||||
<clipPath id="terminal-2368587539-line-21">
|
||||
<rect x="0" y="513.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-1758253465-line-22">
|
||||
<clipPath id="terminal-2368587539-line-22">
|
||||
<rect x="0" y="538.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="992" height="633.6" rx="8"/><text class="terminal-1758253465-title" fill="#c5c8c6" text-anchor="middle" x="496" y="27">CommandPaletteApp</text>
|
||||
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="992" height="633.6" rx="8"/><text class="terminal-2368587539-title" fill="#c5c8c6" text-anchor="middle" x="496" y="27">CommandPaletteApp</text>
|
||||
<g transform="translate(26,22)">
|
||||
<circle cx="0" cy="0" r="7" fill="#ff5f57"/>
|
||||
<circle cx="22" cy="0" r="7" fill="#febc2e"/>
|
||||
<circle cx="44" cy="0" r="7" fill="#28c840"/>
|
||||
</g>
|
||||
|
||||
<g transform="translate(9, 41)" clip-path="url(#terminal-1758253465-clip-terminal)">
|
||||
<rect fill="#003054" x="951.6" y="1.5" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#003054" x="951.6" y="25.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#003054" x="951.6" y="50.3" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="74.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="99.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="12.2" y="99.1" width="36.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="48.8" y="99.1" width="915" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="963.8" y="99.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="12.2" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="24.4" y="123.5" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="48.8" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="61" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="73.2" y="123.5" width="231.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="305" y="123.5" width="646.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="951.6" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="963.8" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="12.2" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="24.4" y="147.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="48.8" y="147.9" width="915" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="963.8" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="172.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="196.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="221.1" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="24.4" y="221.1" width="488" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="512.4" y="221.1" width="463.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="245.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="269.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="24.4" y="269.9" width="561.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="585.6" y="269.9" width="390.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="294.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="318.7" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="24.4" y="318.7" width="780.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="805.2" y="318.7" width="170.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="343.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#003054" x="951.6" y="367.5" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#003054" x="951.6" y="391.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="416.3" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="440.7" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="465.1" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="489.5" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="513.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="538.3" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="562.7" width="24.4" height="24.65" shape-rendering="crispEdges"/>
|
||||
<g class="terminal-1758253465-matrix">
|
||||
<text class="terminal-1758253465-r1" x="0" y="20" textLength="36.6" clip-path="url(#terminal-1758253465-line-0)">Red</text><text class="terminal-1758253465-r3" x="48.8" y="20" textLength="85.4" clip-path="url(#terminal-1758253465-line-0)">Magenta</text><text class="terminal-1758253465-r1" x="146.4" y="20" textLength="36.6" clip-path="url(#terminal-1758253465-line-0)">Red</text><text class="terminal-1758253465-r3" x="195.2" y="20" textLength="85.4" clip-path="url(#terminal-1758253465-line-0)">Magenta</text><text class="terminal-1758253465-r1" x="292.8" y="20" textLength="36.6" clip-path="url(#terminal-1758253465-line-0)">Red</text><text class="terminal-1758253465-r3" x="341.6" y="20" textLength="85.4" clip-path="url(#terminal-1758253465-line-0)">Magenta</text><text class="terminal-1758253465-r1" x="439.2" y="20" textLength="36.6" clip-path="url(#terminal-1758253465-line-0)">Red</text><text class="terminal-1758253465-r3" x="488" y="20" textLength="85.4" clip-path="url(#terminal-1758253465-line-0)">Magenta</text><text class="terminal-1758253465-r1" x="585.6" y="20" textLength="36.6" clip-path="url(#terminal-1758253465-line-0)">Red</text><text class="terminal-1758253465-r3" x="634.4" y="20" textLength="85.4" clip-path="url(#terminal-1758253465-line-0)">Magenta</text><text class="terminal-1758253465-r1" x="732" y="20" textLength="36.6" clip-path="url(#terminal-1758253465-line-0)">Red</text><text class="terminal-1758253465-r3" x="780.8" y="20" textLength="85.4" clip-path="url(#terminal-1758253465-line-0)">Magenta</text><text class="terminal-1758253465-r1" x="878.4" y="20" textLength="36.6" clip-path="url(#terminal-1758253465-line-0)">Red</text><text class="terminal-1758253465-r6" x="976" y="20" textLength="12.2" clip-path="url(#terminal-1758253465-line-0)">
|
||||
</text><text class="terminal-1758253465-r3" x="0" y="44.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-1)">Magenta</text><text class="terminal-1758253465-r1" x="97.6" y="44.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-1)">Red</text><text class="terminal-1758253465-r3" x="146.4" y="44.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-1)">Magenta</text><text class="terminal-1758253465-r1" x="244" y="44.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-1)">Red</text><text class="terminal-1758253465-r3" x="292.8" y="44.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-1)">Magenta</text><text class="terminal-1758253465-r1" x="390.4" y="44.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-1)">Red</text><text class="terminal-1758253465-r3" x="439.2" y="44.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-1)">Magenta</text><text class="terminal-1758253465-r1" x="536.8" y="44.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-1)">Red</text><text class="terminal-1758253465-r3" x="585.6" y="44.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-1)">Magenta</text><text class="terminal-1758253465-r1" x="683.2" y="44.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-1)">Red</text><text class="terminal-1758253465-r3" x="732" y="44.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-1)">Magenta</text><text class="terminal-1758253465-r1" x="829.6" y="44.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-1)">Red</text><text class="terminal-1758253465-r6" x="976" y="44.4" textLength="12.2" clip-path="url(#terminal-1758253465-line-1)">
|
||||
</text><text class="terminal-1758253465-r3" x="0" y="68.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-2)">Magenta</text><text class="terminal-1758253465-r1" x="97.6" y="68.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-2)">Red</text><text class="terminal-1758253465-r3" x="146.4" y="68.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-2)">Magenta</text><text class="terminal-1758253465-r1" x="244" y="68.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-2)">Red</text><text class="terminal-1758253465-r3" x="292.8" y="68.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-2)">Magenta</text><text class="terminal-1758253465-r1" x="390.4" y="68.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-2)">Red</text><text class="terminal-1758253465-r3" x="439.2" y="68.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-2)">Magenta</text><text class="terminal-1758253465-r1" x="536.8" y="68.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-2)">Red</text><text class="terminal-1758253465-r3" x="585.6" y="68.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-2)">Magenta</text><text class="terminal-1758253465-r1" x="683.2" y="68.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-2)">Red</text><text class="terminal-1758253465-r3" x="732" y="68.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-2)">Magenta</text><text class="terminal-1758253465-r1" x="829.6" y="68.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-2)">Red</text><text class="terminal-1758253465-r6" x="976" y="68.8" textLength="12.2" clip-path="url(#terminal-1758253465-line-2)">
|
||||
</text><text class="terminal-1758253465-r7" x="0" y="93.2" textLength="976" clip-path="url(#terminal-1758253465-line-3)">▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔</text><text class="terminal-1758253465-r6" x="976" y="93.2" textLength="12.2" clip-path="url(#terminal-1758253465-line-3)">
|
||||
</text><text class="terminal-1758253465-r6" x="976" y="117.6" textLength="12.2" clip-path="url(#terminal-1758253465-line-4)">
|
||||
</text><text class="terminal-1758253465-r9" x="24.4" y="142" textLength="12.2" clip-path="url(#terminal-1758253465-line-5)">🔎</text><text class="terminal-1758253465-r10" x="61" y="142" textLength="12.2" clip-path="url(#terminal-1758253465-line-5)">S</text><text class="terminal-1758253465-r11" x="73.2" y="142" textLength="231.8" clip-path="url(#terminal-1758253465-line-5)">earch for commands…</text><text class="terminal-1758253465-r6" x="976" y="142" textLength="12.2" clip-path="url(#terminal-1758253465-line-5)">
|
||||
</text><text class="terminal-1758253465-r6" x="976" y="166.4" textLength="12.2" clip-path="url(#terminal-1758253465-line-6)">
|
||||
</text><text class="terminal-1758253465-r6" x="976" y="190.8" textLength="12.2" clip-path="url(#terminal-1758253465-line-7)">
|
||||
</text><text class="terminal-1758253465-r12" x="0" y="215.2" textLength="976" clip-path="url(#terminal-1758253465-line-8)">  Quit the application                                                          </text><text class="terminal-1758253465-r6" x="976" y="215.2" textLength="12.2" clip-path="url(#terminal-1758253465-line-8)">
|
||||
</text><text class="terminal-1758253465-r13" x="24.4" y="239.6" textLength="488" clip-path="url(#terminal-1758253465-line-9)">Quit the application as soon as possible</text><text class="terminal-1758253465-r6" x="976" y="239.6" textLength="12.2" clip-path="url(#terminal-1758253465-line-9)">
|
||||
</text><text class="terminal-1758253465-r12" x="0" y="264" textLength="976" clip-path="url(#terminal-1758253465-line-10)">  Save screenshot                                                               </text><text class="terminal-1758253465-r6" x="976" y="264" textLength="12.2" clip-path="url(#terminal-1758253465-line-10)">
|
||||
</text><text class="terminal-1758253465-r13" x="24.4" y="288.4" textLength="561.2" clip-path="url(#terminal-1758253465-line-11)">Save an SVG 'screenshot' of the current screen</text><text class="terminal-1758253465-r6" x="976" y="288.4" textLength="12.2" clip-path="url(#terminal-1758253465-line-11)">
|
||||
</text><text class="terminal-1758253465-r12" x="0" y="312.8" textLength="976" clip-path="url(#terminal-1758253465-line-12)">  Show keys and help panel                                                      </text><text class="terminal-1758253465-r6" x="976" y="312.8" textLength="12.2" clip-path="url(#terminal-1758253465-line-12)">
|
||||
</text><text class="terminal-1758253465-r13" x="24.4" y="337.2" textLength="780.8" clip-path="url(#terminal-1758253465-line-13)">Show help for the focused widget and a summary of available keys</text><text class="terminal-1758253465-r6" x="976" y="337.2" textLength="12.2" clip-path="url(#terminal-1758253465-line-13)">
|
||||
</text><text class="terminal-1758253465-r7" x="0" y="361.6" textLength="976" clip-path="url(#terminal-1758253465-line-14)">▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁</text><text class="terminal-1758253465-r6" x="976" y="361.6" textLength="12.2" clip-path="url(#terminal-1758253465-line-14)">
|
||||
</text><text class="terminal-1758253465-r3" x="0" y="386" textLength="85.4" clip-path="url(#terminal-1758253465-line-15)">Magenta</text><text class="terminal-1758253465-r1" x="97.6" y="386" textLength="36.6" clip-path="url(#terminal-1758253465-line-15)">Red</text><text class="terminal-1758253465-r3" x="146.4" y="386" textLength="85.4" clip-path="url(#terminal-1758253465-line-15)">Magenta</text><text class="terminal-1758253465-r1" x="244" y="386" textLength="36.6" clip-path="url(#terminal-1758253465-line-15)">Red</text><text class="terminal-1758253465-r3" x="292.8" y="386" textLength="85.4" clip-path="url(#terminal-1758253465-line-15)">Magenta</text><text class="terminal-1758253465-r1" x="390.4" y="386" textLength="36.6" clip-path="url(#terminal-1758253465-line-15)">Red</text><text class="terminal-1758253465-r3" x="439.2" y="386" textLength="85.4" clip-path="url(#terminal-1758253465-line-15)">Magenta</text><text class="terminal-1758253465-r1" x="536.8" y="386" textLength="36.6" clip-path="url(#terminal-1758253465-line-15)">Red</text><text class="terminal-1758253465-r3" x="585.6" y="386" textLength="85.4" clip-path="url(#terminal-1758253465-line-15)">Magenta</text><text class="terminal-1758253465-r1" x="683.2" y="386" textLength="36.6" clip-path="url(#terminal-1758253465-line-15)">Red</text><text class="terminal-1758253465-r3" x="732" y="386" textLength="85.4" clip-path="url(#terminal-1758253465-line-15)">Magenta</text><text class="terminal-1758253465-r1" x="829.6" y="386" textLength="36.6" clip-path="url(#terminal-1758253465-line-15)">Red</text><text class="terminal-1758253465-r6" x="976" y="386" textLength="12.2" clip-path="url(#terminal-1758253465-line-15)">
|
||||
</text><text class="terminal-1758253465-r3" x="0" y="410.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-16)">Magenta</text><text class="terminal-1758253465-r1" x="97.6" y="410.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-16)">Red</text><text class="terminal-1758253465-r3" x="146.4" y="410.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-16)">Magenta</text><text class="terminal-1758253465-r1" x="244" y="410.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-16)">Red</text><text class="terminal-1758253465-r3" x="292.8" y="410.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-16)">Magenta</text><text class="terminal-1758253465-r1" x="390.4" y="410.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-16)">Red</text><text class="terminal-1758253465-r3" x="439.2" y="410.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-16)">Magenta</text><text class="terminal-1758253465-r1" x="536.8" y="410.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-16)">Red</text><text class="terminal-1758253465-r3" x="585.6" y="410.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-16)">Magenta</text><text class="terminal-1758253465-r1" x="683.2" y="410.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-16)">Red</text><text class="terminal-1758253465-r3" x="732" y="410.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-16)">Magenta</text><text class="terminal-1758253465-r1" x="829.6" y="410.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-16)">Red</text><text class="terminal-1758253465-r6" x="976" y="410.4" textLength="12.2" clip-path="url(#terminal-1758253465-line-16)">
|
||||
</text><text class="terminal-1758253465-r3" x="0" y="434.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-17)">Magenta</text><text class="terminal-1758253465-r1" x="97.6" y="434.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-17)">Red</text><text class="terminal-1758253465-r3" x="146.4" y="434.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-17)">Magenta</text><text class="terminal-1758253465-r1" x="244" y="434.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-17)">Red</text><text class="terminal-1758253465-r3" x="292.8" y="434.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-17)">Magenta</text><text class="terminal-1758253465-r1" x="390.4" y="434.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-17)">Red</text><text class="terminal-1758253465-r3" x="439.2" y="434.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-17)">Magenta</text><text class="terminal-1758253465-r1" x="536.8" y="434.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-17)">Red</text><text class="terminal-1758253465-r3" x="585.6" y="434.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-17)">Magenta</text><text class="terminal-1758253465-r1" x="683.2" y="434.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-17)">Red</text><text class="terminal-1758253465-r3" x="732" y="434.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-17)">Magenta</text><text class="terminal-1758253465-r1" x="829.6" y="434.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-17)">Red</text><text class="terminal-1758253465-r6" x="976" y="434.8" textLength="12.2" clip-path="url(#terminal-1758253465-line-17)">
|
||||
</text><text class="terminal-1758253465-r3" x="0" y="459.2" textLength="85.4" clip-path="url(#terminal-1758253465-line-18)">Magenta</text><text class="terminal-1758253465-r1" x="97.6" y="459.2" textLength="36.6" clip-path="url(#terminal-1758253465-line-18)">Red</text><text class="terminal-1758253465-r3" x="146.4" y="459.2" textLength="85.4" clip-path="url(#terminal-1758253465-line-18)">Magenta</text><text class="terminal-1758253465-r1" x="244" y="459.2" textLength="36.6" clip-path="url(#terminal-1758253465-line-18)">Red</text><text class="terminal-1758253465-r3" x="292.8" y="459.2" textLength="85.4" clip-path="url(#terminal-1758253465-line-18)">Magenta</text><text class="terminal-1758253465-r1" x="390.4" y="459.2" textLength="36.6" clip-path="url(#terminal-1758253465-line-18)">Red</text><text class="terminal-1758253465-r3" x="439.2" y="459.2" textLength="85.4" clip-path="url(#terminal-1758253465-line-18)">Magenta</text><text class="terminal-1758253465-r1" x="536.8" y="459.2" textLength="36.6" clip-path="url(#terminal-1758253465-line-18)">Red</text><text class="terminal-1758253465-r3" x="585.6" y="459.2" textLength="85.4" clip-path="url(#terminal-1758253465-line-18)">Magenta</text><text class="terminal-1758253465-r1" x="683.2" y="459.2" textLength="36.6" clip-path="url(#terminal-1758253465-line-18)">Red</text><text class="terminal-1758253465-r3" x="732" y="459.2" textLength="85.4" clip-path="url(#terminal-1758253465-line-18)">Magenta</text><text class="terminal-1758253465-r1" x="829.6" y="459.2" textLength="36.6" clip-path="url(#terminal-1758253465-line-18)">Red</text><text class="terminal-1758253465-r6" x="976" y="459.2" textLength="12.2" clip-path="url(#terminal-1758253465-line-18)">
|
||||
</text><text class="terminal-1758253465-r3" x="0" y="483.6" textLength="85.4" clip-path="url(#terminal-1758253465-line-19)">Magenta</text><text class="terminal-1758253465-r1" x="97.6" y="483.6" textLength="36.6" clip-path="url(#terminal-1758253465-line-19)">Red</text><text class="terminal-1758253465-r3" x="146.4" y="483.6" textLength="85.4" clip-path="url(#terminal-1758253465-line-19)">Magenta</text><text class="terminal-1758253465-r1" x="244" y="483.6" textLength="36.6" clip-path="url(#terminal-1758253465-line-19)">Red</text><text class="terminal-1758253465-r3" x="292.8" y="483.6" textLength="85.4" clip-path="url(#terminal-1758253465-line-19)">Magenta</text><text class="terminal-1758253465-r1" x="390.4" y="483.6" textLength="36.6" clip-path="url(#terminal-1758253465-line-19)">Red</text><text class="terminal-1758253465-r3" x="439.2" y="483.6" textLength="85.4" clip-path="url(#terminal-1758253465-line-19)">Magenta</text><text class="terminal-1758253465-r1" x="536.8" y="483.6" textLength="36.6" clip-path="url(#terminal-1758253465-line-19)">Red</text><text class="terminal-1758253465-r3" x="585.6" y="483.6" textLength="85.4" clip-path="url(#terminal-1758253465-line-19)">Magenta</text><text class="terminal-1758253465-r1" x="683.2" y="483.6" textLength="36.6" clip-path="url(#terminal-1758253465-line-19)">Red</text><text class="terminal-1758253465-r3" x="732" y="483.6" textLength="85.4" clip-path="url(#terminal-1758253465-line-19)">Magenta</text><text class="terminal-1758253465-r1" x="829.6" y="483.6" textLength="36.6" clip-path="url(#terminal-1758253465-line-19)">Red</text><text class="terminal-1758253465-r6" x="976" y="483.6" textLength="12.2" clip-path="url(#terminal-1758253465-line-19)">
|
||||
</text><text class="terminal-1758253465-r3" x="0" y="508" textLength="85.4" clip-path="url(#terminal-1758253465-line-20)">Magenta</text><text class="terminal-1758253465-r1" x="97.6" y="508" textLength="36.6" clip-path="url(#terminal-1758253465-line-20)">Red</text><text class="terminal-1758253465-r3" x="146.4" y="508" textLength="85.4" clip-path="url(#terminal-1758253465-line-20)">Magenta</text><text class="terminal-1758253465-r1" x="244" y="508" textLength="36.6" clip-path="url(#terminal-1758253465-line-20)">Red</text><text class="terminal-1758253465-r3" x="292.8" y="508" textLength="85.4" clip-path="url(#terminal-1758253465-line-20)">Magenta</text><text class="terminal-1758253465-r1" x="390.4" y="508" textLength="36.6" clip-path="url(#terminal-1758253465-line-20)">Red</text><text class="terminal-1758253465-r3" x="439.2" y="508" textLength="85.4" clip-path="url(#terminal-1758253465-line-20)">Magenta</text><text class="terminal-1758253465-r1" x="536.8" y="508" textLength="36.6" clip-path="url(#terminal-1758253465-line-20)">Red</text><text class="terminal-1758253465-r3" x="585.6" y="508" textLength="85.4" clip-path="url(#terminal-1758253465-line-20)">Magenta</text><text class="terminal-1758253465-r1" x="683.2" y="508" textLength="36.6" clip-path="url(#terminal-1758253465-line-20)">Red</text><text class="terminal-1758253465-r3" x="732" y="508" textLength="85.4" clip-path="url(#terminal-1758253465-line-20)">Magenta</text><text class="terminal-1758253465-r1" x="829.6" y="508" textLength="36.6" clip-path="url(#terminal-1758253465-line-20)">Red</text><text class="terminal-1758253465-r6" x="976" y="508" textLength="12.2" clip-path="url(#terminal-1758253465-line-20)">
|
||||
</text><text class="terminal-1758253465-r3" x="0" y="532.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-21)">Magenta</text><text class="terminal-1758253465-r1" x="97.6" y="532.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-21)">Red</text><text class="terminal-1758253465-r3" x="146.4" y="532.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-21)">Magenta</text><text class="terminal-1758253465-r1" x="244" y="532.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-21)">Red</text><text class="terminal-1758253465-r3" x="292.8" y="532.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-21)">Magenta</text><text class="terminal-1758253465-r1" x="390.4" y="532.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-21)">Red</text><text class="terminal-1758253465-r3" x="439.2" y="532.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-21)">Magenta</text><text class="terminal-1758253465-r1" x="536.8" y="532.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-21)">Red</text><text class="terminal-1758253465-r3" x="585.6" y="532.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-21)">Magenta</text><text class="terminal-1758253465-r1" x="683.2" y="532.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-21)">Red</text><text class="terminal-1758253465-r3" x="732" y="532.4" textLength="85.4" clip-path="url(#terminal-1758253465-line-21)">Magenta</text><text class="terminal-1758253465-r1" x="829.6" y="532.4" textLength="36.6" clip-path="url(#terminal-1758253465-line-21)">Red</text><text class="terminal-1758253465-r6" x="976" y="532.4" textLength="12.2" clip-path="url(#terminal-1758253465-line-21)">
|
||||
</text><text class="terminal-1758253465-r3" x="0" y="556.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-22)">Magenta</text><text class="terminal-1758253465-r1" x="97.6" y="556.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-22)">Red</text><text class="terminal-1758253465-r3" x="146.4" y="556.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-22)">Magenta</text><text class="terminal-1758253465-r1" x="244" y="556.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-22)">Red</text><text class="terminal-1758253465-r3" x="292.8" y="556.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-22)">Magenta</text><text class="terminal-1758253465-r1" x="390.4" y="556.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-22)">Red</text><text class="terminal-1758253465-r3" x="439.2" y="556.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-22)">Magenta</text><text class="terminal-1758253465-r1" x="536.8" y="556.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-22)">Red</text><text class="terminal-1758253465-r3" x="585.6" y="556.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-22)">Magenta</text><text class="terminal-1758253465-r1" x="683.2" y="556.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-22)">Red</text><text class="terminal-1758253465-r3" x="732" y="556.8" textLength="85.4" clip-path="url(#terminal-1758253465-line-22)">Magenta</text><text class="terminal-1758253465-r1" x="829.6" y="556.8" textLength="36.6" clip-path="url(#terminal-1758253465-line-22)">Red</text><text class="terminal-1758253465-r6" x="976" y="556.8" textLength="12.2" clip-path="url(#terminal-1758253465-line-22)">
|
||||
</text><text class="terminal-1758253465-r3" x="0" y="581.2" textLength="85.4" clip-path="url(#terminal-1758253465-line-23)">Magenta</text><text class="terminal-1758253465-r1" x="97.6" y="581.2" textLength="36.6" clip-path="url(#terminal-1758253465-line-23)">Red</text><text class="terminal-1758253465-r3" x="146.4" y="581.2" textLength="85.4" clip-path="url(#terminal-1758253465-line-23)">Magenta</text><text class="terminal-1758253465-r1" x="244" y="581.2" textLength="36.6" clip-path="url(#terminal-1758253465-line-23)">Red</text><text class="terminal-1758253465-r3" x="292.8" y="581.2" textLength="85.4" clip-path="url(#terminal-1758253465-line-23)">Magenta</text><text class="terminal-1758253465-r1" x="390.4" y="581.2" textLength="36.6" clip-path="url(#terminal-1758253465-line-23)">Red</text><text class="terminal-1758253465-r3" x="439.2" y="581.2" textLength="85.4" clip-path="url(#terminal-1758253465-line-23)">Magenta</text><text class="terminal-1758253465-r1" x="536.8" y="581.2" textLength="36.6" clip-path="url(#terminal-1758253465-line-23)">Red</text><text class="terminal-1758253465-r3" x="585.6" y="581.2" textLength="85.4" clip-path="url(#terminal-1758253465-line-23)">Magenta</text><text class="terminal-1758253465-r1" x="683.2" y="581.2" textLength="36.6" clip-path="url(#terminal-1758253465-line-23)">Red</text><text class="terminal-1758253465-r3" x="732" y="581.2" textLength="85.4" clip-path="url(#terminal-1758253465-line-23)">Magenta</text><text class="terminal-1758253465-r1" x="829.6" y="581.2" textLength="36.6" clip-path="url(#terminal-1758253465-line-23)">Red</text>
|
||||
<g transform="translate(9, 41)" clip-path="url(#terminal-2368587539-clip-terminal)">
|
||||
<rect fill="#003054" x="951.6" y="1.5" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#003054" x="951.6" y="25.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#003054" x="951.6" y="50.3" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="74.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="99.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="12.2" y="99.1" width="36.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="48.8" y="99.1" width="915" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="963.8" y="99.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="12.2" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="24.4" y="123.5" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="48.8" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="61" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="73.2" y="123.5" width="231.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="305" y="123.5" width="646.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="951.6" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="963.8" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="12.2" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="24.4" y="147.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="48.8" y="147.9" width="915" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="963.8" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="172.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="196.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="221.1" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="24.4" y="221.1" width="488" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="512.4" y="221.1" width="463.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="245.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="269.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="24.4" y="269.9" width="561.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="585.6" y="269.9" width="390.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="294.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="318.7" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="24.4" y="318.7" width="780.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="805.2" y="318.7" width="170.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="343.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#003054" x="951.6" y="367.5" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#003054" x="951.6" y="391.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="416.3" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="440.7" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="465.1" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="489.5" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="513.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="538.3" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#000000" x="951.6" y="562.7" width="24.4" height="24.65" shape-rendering="crispEdges"/>
|
||||
<g class="terminal-2368587539-matrix">
|
||||
<text class="terminal-2368587539-r1" x="0" y="20" textLength="36.6" clip-path="url(#terminal-2368587539-line-0)">Red</text><text class="terminal-2368587539-r3" x="48.8" y="20" textLength="85.4" clip-path="url(#terminal-2368587539-line-0)">Magenta</text><text class="terminal-2368587539-r1" x="146.4" y="20" textLength="36.6" clip-path="url(#terminal-2368587539-line-0)">Red</text><text class="terminal-2368587539-r3" x="195.2" y="20" textLength="85.4" clip-path="url(#terminal-2368587539-line-0)">Magenta</text><text class="terminal-2368587539-r1" x="292.8" y="20" textLength="36.6" clip-path="url(#terminal-2368587539-line-0)">Red</text><text class="terminal-2368587539-r3" x="341.6" y="20" textLength="85.4" clip-path="url(#terminal-2368587539-line-0)">Magenta</text><text class="terminal-2368587539-r1" x="439.2" y="20" textLength="36.6" clip-path="url(#terminal-2368587539-line-0)">Red</text><text class="terminal-2368587539-r3" x="488" y="20" textLength="85.4" clip-path="url(#terminal-2368587539-line-0)">Magenta</text><text class="terminal-2368587539-r1" x="585.6" y="20" textLength="36.6" clip-path="url(#terminal-2368587539-line-0)">Red</text><text class="terminal-2368587539-r3" x="634.4" y="20" textLength="85.4" clip-path="url(#terminal-2368587539-line-0)">Magenta</text><text class="terminal-2368587539-r1" x="732" y="20" textLength="36.6" clip-path="url(#terminal-2368587539-line-0)">Red</text><text class="terminal-2368587539-r3" x="780.8" y="20" textLength="85.4" clip-path="url(#terminal-2368587539-line-0)">Magenta</text><text class="terminal-2368587539-r1" x="878.4" y="20" textLength="36.6" clip-path="url(#terminal-2368587539-line-0)">Red</text><text class="terminal-2368587539-r6" x="976" y="20" textLength="12.2" clip-path="url(#terminal-2368587539-line-0)">
|
||||
</text><text class="terminal-2368587539-r3" x="0" y="44.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-1)">Magenta</text><text class="terminal-2368587539-r1" x="97.6" y="44.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-1)">Red</text><text class="terminal-2368587539-r3" x="146.4" y="44.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-1)">Magenta</text><text class="terminal-2368587539-r1" x="244" y="44.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-1)">Red</text><text class="terminal-2368587539-r3" x="292.8" y="44.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-1)">Magenta</text><text class="terminal-2368587539-r1" x="390.4" y="44.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-1)">Red</text><text class="terminal-2368587539-r3" x="439.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-1)">Magenta</text><text class="terminal-2368587539-r1" x="536.8" y="44.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-1)">Red</text><text class="terminal-2368587539-r3" x="585.6" y="44.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-1)">Magenta</text><text class="terminal-2368587539-r1" x="683.2" y="44.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-1)">Red</text><text class="terminal-2368587539-r3" x="732" y="44.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-1)">Magenta</text><text class="terminal-2368587539-r1" x="829.6" y="44.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-1)">Red</text><text class="terminal-2368587539-r6" x="976" y="44.4" textLength="12.2" clip-path="url(#terminal-2368587539-line-1)">
|
||||
</text><text class="terminal-2368587539-r3" x="0" y="68.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-2)">Magenta</text><text class="terminal-2368587539-r1" x="97.6" y="68.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-2)">Red</text><text class="terminal-2368587539-r3" x="146.4" y="68.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-2)">Magenta</text><text class="terminal-2368587539-r1" x="244" y="68.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-2)">Red</text><text class="terminal-2368587539-r3" x="292.8" y="68.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-2)">Magenta</text><text class="terminal-2368587539-r1" x="390.4" y="68.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-2)">Red</text><text class="terminal-2368587539-r3" x="439.2" y="68.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-2)">Magenta</text><text class="terminal-2368587539-r1" x="536.8" y="68.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-2)">Red</text><text class="terminal-2368587539-r3" x="585.6" y="68.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-2)">Magenta</text><text class="terminal-2368587539-r1" x="683.2" y="68.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-2)">Red</text><text class="terminal-2368587539-r3" x="732" y="68.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-2)">Magenta</text><text class="terminal-2368587539-r1" x="829.6" y="68.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-2)">Red</text><text class="terminal-2368587539-r6" x="976" y="68.8" textLength="12.2" clip-path="url(#terminal-2368587539-line-2)">
|
||||
</text><text class="terminal-2368587539-r7" x="0" y="93.2" textLength="976" clip-path="url(#terminal-2368587539-line-3)">▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔</text><text class="terminal-2368587539-r6" x="976" y="93.2" textLength="12.2" clip-path="url(#terminal-2368587539-line-3)">
|
||||
</text><text class="terminal-2368587539-r6" x="976" y="117.6" textLength="12.2" clip-path="url(#terminal-2368587539-line-4)">
|
||||
</text><text class="terminal-2368587539-r9" x="24.4" y="142" textLength="12.2" clip-path="url(#terminal-2368587539-line-5)">🔎</text><text class="terminal-2368587539-r10" x="61" y="142" textLength="12.2" clip-path="url(#terminal-2368587539-line-5)">S</text><text class="terminal-2368587539-r11" x="73.2" y="142" textLength="231.8" clip-path="url(#terminal-2368587539-line-5)">earch for commands…</text><text class="terminal-2368587539-r6" x="976" y="142" textLength="12.2" clip-path="url(#terminal-2368587539-line-5)">
|
||||
</text><text class="terminal-2368587539-r6" x="976" y="166.4" textLength="12.2" clip-path="url(#terminal-2368587539-line-6)">
|
||||
</text><text class="terminal-2368587539-r6" x="976" y="190.8" textLength="12.2" clip-path="url(#terminal-2368587539-line-7)">
|
||||
</text><text class="terminal-2368587539-r12" x="0" y="215.2" textLength="976" clip-path="url(#terminal-2368587539-line-8)">  Quit the application                                                          </text><text class="terminal-2368587539-r6" x="976" y="215.2" textLength="12.2" clip-path="url(#terminal-2368587539-line-8)">
|
||||
</text><text class="terminal-2368587539-r13" x="24.4" y="239.6" textLength="488" clip-path="url(#terminal-2368587539-line-9)">Quit the application as soon as possible</text><text class="terminal-2368587539-r6" x="976" y="239.6" textLength="12.2" clip-path="url(#terminal-2368587539-line-9)">
|
||||
</text><text class="terminal-2368587539-r12" x="0" y="264" textLength="976" clip-path="url(#terminal-2368587539-line-10)">  Save screenshot                                                               </text><text class="terminal-2368587539-r6" x="976" y="264" textLength="12.2" clip-path="url(#terminal-2368587539-line-10)">
|
||||
</text><text class="terminal-2368587539-r13" x="24.4" y="288.4" textLength="561.2" clip-path="url(#terminal-2368587539-line-11)">Save an SVG 'screenshot' of the current screen</text><text class="terminal-2368587539-r6" x="976" y="288.4" textLength="12.2" clip-path="url(#terminal-2368587539-line-11)">
|
||||
</text><text class="terminal-2368587539-r12" x="0" y="312.8" textLength="976" clip-path="url(#terminal-2368587539-line-12)">  Show keys and help panel                                                      </text><text class="terminal-2368587539-r6" x="976" y="312.8" textLength="12.2" clip-path="url(#terminal-2368587539-line-12)">
|
||||
</text><text class="terminal-2368587539-r13" x="24.4" y="337.2" textLength="780.8" clip-path="url(#terminal-2368587539-line-13)">Show help for the focused widget and a summary of available keys</text><text class="terminal-2368587539-r6" x="976" y="337.2" textLength="12.2" clip-path="url(#terminal-2368587539-line-13)">
|
||||
</text><text class="terminal-2368587539-r7" x="0" y="361.6" textLength="976" clip-path="url(#terminal-2368587539-line-14)">▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁</text><text class="terminal-2368587539-r6" x="976" y="361.6" textLength="12.2" clip-path="url(#terminal-2368587539-line-14)">
|
||||
</text><text class="terminal-2368587539-r3" x="0" y="386" textLength="85.4" clip-path="url(#terminal-2368587539-line-15)">Magenta</text><text class="terminal-2368587539-r1" x="97.6" y="386" textLength="36.6" clip-path="url(#terminal-2368587539-line-15)">Red</text><text class="terminal-2368587539-r3" x="146.4" y="386" textLength="85.4" clip-path="url(#terminal-2368587539-line-15)">Magenta</text><text class="terminal-2368587539-r1" x="244" y="386" textLength="36.6" clip-path="url(#terminal-2368587539-line-15)">Red</text><text class="terminal-2368587539-r3" x="292.8" y="386" textLength="85.4" clip-path="url(#terminal-2368587539-line-15)">Magenta</text><text class="terminal-2368587539-r1" x="390.4" y="386" textLength="36.6" clip-path="url(#terminal-2368587539-line-15)">Red</text><text class="terminal-2368587539-r3" x="439.2" y="386" textLength="85.4" clip-path="url(#terminal-2368587539-line-15)">Magenta</text><text class="terminal-2368587539-r1" x="536.8" y="386" textLength="36.6" clip-path="url(#terminal-2368587539-line-15)">Red</text><text class="terminal-2368587539-r3" x="585.6" y="386" textLength="85.4" clip-path="url(#terminal-2368587539-line-15)">Magenta</text><text class="terminal-2368587539-r1" x="683.2" y="386" textLength="36.6" clip-path="url(#terminal-2368587539-line-15)">Red</text><text class="terminal-2368587539-r3" x="732" y="386" textLength="85.4" clip-path="url(#terminal-2368587539-line-15)">Magenta</text><text class="terminal-2368587539-r1" x="829.6" y="386" textLength="36.6" clip-path="url(#terminal-2368587539-line-15)">Red</text><text class="terminal-2368587539-r6" x="976" y="386" textLength="12.2" clip-path="url(#terminal-2368587539-line-15)">
|
||||
</text><text class="terminal-2368587539-r3" x="0" y="410.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-16)">Magenta</text><text class="terminal-2368587539-r1" x="97.6" y="410.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-16)">Red</text><text class="terminal-2368587539-r3" x="146.4" y="410.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-16)">Magenta</text><text class="terminal-2368587539-r1" x="244" y="410.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-16)">Red</text><text class="terminal-2368587539-r3" x="292.8" y="410.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-16)">Magenta</text><text class="terminal-2368587539-r1" x="390.4" y="410.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-16)">Red</text><text class="terminal-2368587539-r3" x="439.2" y="410.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-16)">Magenta</text><text class="terminal-2368587539-r1" x="536.8" y="410.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-16)">Red</text><text class="terminal-2368587539-r3" x="585.6" y="410.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-16)">Magenta</text><text class="terminal-2368587539-r1" x="683.2" y="410.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-16)">Red</text><text class="terminal-2368587539-r3" x="732" y="410.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-16)">Magenta</text><text class="terminal-2368587539-r1" x="829.6" y="410.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-16)">Red</text><text class="terminal-2368587539-r6" x="976" y="410.4" textLength="12.2" clip-path="url(#terminal-2368587539-line-16)">
|
||||
</text><text class="terminal-2368587539-r3" x="0" y="434.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-17)">Magenta</text><text class="terminal-2368587539-r1" x="97.6" y="434.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-17)">Red</text><text class="terminal-2368587539-r3" x="146.4" y="434.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-17)">Magenta</text><text class="terminal-2368587539-r1" x="244" y="434.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-17)">Red</text><text class="terminal-2368587539-r3" x="292.8" y="434.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-17)">Magenta</text><text class="terminal-2368587539-r1" x="390.4" y="434.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-17)">Red</text><text class="terminal-2368587539-r3" x="439.2" y="434.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-17)">Magenta</text><text class="terminal-2368587539-r1" x="536.8" y="434.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-17)">Red</text><text class="terminal-2368587539-r3" x="585.6" y="434.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-17)">Magenta</text><text class="terminal-2368587539-r1" x="683.2" y="434.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-17)">Red</text><text class="terminal-2368587539-r3" x="732" y="434.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-17)">Magenta</text><text class="terminal-2368587539-r1" x="829.6" y="434.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-17)">Red</text><text class="terminal-2368587539-r6" x="976" y="434.8" textLength="12.2" clip-path="url(#terminal-2368587539-line-17)">
|
||||
</text><text class="terminal-2368587539-r3" x="0" y="459.2" textLength="85.4" clip-path="url(#terminal-2368587539-line-18)">Magenta</text><text class="terminal-2368587539-r1" x="97.6" y="459.2" textLength="36.6" clip-path="url(#terminal-2368587539-line-18)">Red</text><text class="terminal-2368587539-r3" x="146.4" y="459.2" textLength="85.4" clip-path="url(#terminal-2368587539-line-18)">Magenta</text><text class="terminal-2368587539-r1" x="244" y="459.2" textLength="36.6" clip-path="url(#terminal-2368587539-line-18)">Red</text><text class="terminal-2368587539-r3" x="292.8" y="459.2" textLength="85.4" clip-path="url(#terminal-2368587539-line-18)">Magenta</text><text class="terminal-2368587539-r1" x="390.4" y="459.2" textLength="36.6" clip-path="url(#terminal-2368587539-line-18)">Red</text><text class="terminal-2368587539-r3" x="439.2" y="459.2" textLength="85.4" clip-path="url(#terminal-2368587539-line-18)">Magenta</text><text class="terminal-2368587539-r1" x="536.8" y="459.2" textLength="36.6" clip-path="url(#terminal-2368587539-line-18)">Red</text><text class="terminal-2368587539-r3" x="585.6" y="459.2" textLength="85.4" clip-path="url(#terminal-2368587539-line-18)">Magenta</text><text class="terminal-2368587539-r1" x="683.2" y="459.2" textLength="36.6" clip-path="url(#terminal-2368587539-line-18)">Red</text><text class="terminal-2368587539-r3" x="732" y="459.2" textLength="85.4" clip-path="url(#terminal-2368587539-line-18)">Magenta</text><text class="terminal-2368587539-r1" x="829.6" y="459.2" textLength="36.6" clip-path="url(#terminal-2368587539-line-18)">Red</text><text class="terminal-2368587539-r6" x="976" y="459.2" textLength="12.2" clip-path="url(#terminal-2368587539-line-18)">
|
||||
</text><text class="terminal-2368587539-r3" x="0" y="483.6" textLength="85.4" clip-path="url(#terminal-2368587539-line-19)">Magenta</text><text class="terminal-2368587539-r1" x="97.6" y="483.6" textLength="36.6" clip-path="url(#terminal-2368587539-line-19)">Red</text><text class="terminal-2368587539-r3" x="146.4" y="483.6" textLength="85.4" clip-path="url(#terminal-2368587539-line-19)">Magenta</text><text class="terminal-2368587539-r1" x="244" y="483.6" textLength="36.6" clip-path="url(#terminal-2368587539-line-19)">Red</text><text class="terminal-2368587539-r3" x="292.8" y="483.6" textLength="85.4" clip-path="url(#terminal-2368587539-line-19)">Magenta</text><text class="terminal-2368587539-r1" x="390.4" y="483.6" textLength="36.6" clip-path="url(#terminal-2368587539-line-19)">Red</text><text class="terminal-2368587539-r3" x="439.2" y="483.6" textLength="85.4" clip-path="url(#terminal-2368587539-line-19)">Magenta</text><text class="terminal-2368587539-r1" x="536.8" y="483.6" textLength="36.6" clip-path="url(#terminal-2368587539-line-19)">Red</text><text class="terminal-2368587539-r3" x="585.6" y="483.6" textLength="85.4" clip-path="url(#terminal-2368587539-line-19)">Magenta</text><text class="terminal-2368587539-r1" x="683.2" y="483.6" textLength="36.6" clip-path="url(#terminal-2368587539-line-19)">Red</text><text class="terminal-2368587539-r3" x="732" y="483.6" textLength="85.4" clip-path="url(#terminal-2368587539-line-19)">Magenta</text><text class="terminal-2368587539-r1" x="829.6" y="483.6" textLength="36.6" clip-path="url(#terminal-2368587539-line-19)">Red</text><text class="terminal-2368587539-r6" x="976" y="483.6" textLength="12.2" clip-path="url(#terminal-2368587539-line-19)">
|
||||
</text><text class="terminal-2368587539-r3" x="0" y="508" textLength="85.4" clip-path="url(#terminal-2368587539-line-20)">Magenta</text><text class="terminal-2368587539-r1" x="97.6" y="508" textLength="36.6" clip-path="url(#terminal-2368587539-line-20)">Red</text><text class="terminal-2368587539-r3" x="146.4" y="508" textLength="85.4" clip-path="url(#terminal-2368587539-line-20)">Magenta</text><text class="terminal-2368587539-r1" x="244" y="508" textLength="36.6" clip-path="url(#terminal-2368587539-line-20)">Red</text><text class="terminal-2368587539-r3" x="292.8" y="508" textLength="85.4" clip-path="url(#terminal-2368587539-line-20)">Magenta</text><text class="terminal-2368587539-r1" x="390.4" y="508" textLength="36.6" clip-path="url(#terminal-2368587539-line-20)">Red</text><text class="terminal-2368587539-r3" x="439.2" y="508" textLength="85.4" clip-path="url(#terminal-2368587539-line-20)">Magenta</text><text class="terminal-2368587539-r1" x="536.8" y="508" textLength="36.6" clip-path="url(#terminal-2368587539-line-20)">Red</text><text class="terminal-2368587539-r3" x="585.6" y="508" textLength="85.4" clip-path="url(#terminal-2368587539-line-20)">Magenta</text><text class="terminal-2368587539-r1" x="683.2" y="508" textLength="36.6" clip-path="url(#terminal-2368587539-line-20)">Red</text><text class="terminal-2368587539-r3" x="732" y="508" textLength="85.4" clip-path="url(#terminal-2368587539-line-20)">Magenta</text><text class="terminal-2368587539-r1" x="829.6" y="508" textLength="36.6" clip-path="url(#terminal-2368587539-line-20)">Red</text><text class="terminal-2368587539-r6" x="976" y="508" textLength="12.2" clip-path="url(#terminal-2368587539-line-20)">
|
||||
</text><text class="terminal-2368587539-r3" x="0" y="532.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-21)">Magenta</text><text class="terminal-2368587539-r1" x="97.6" y="532.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-21)">Red</text><text class="terminal-2368587539-r3" x="146.4" y="532.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-21)">Magenta</text><text class="terminal-2368587539-r1" x="244" y="532.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-21)">Red</text><text class="terminal-2368587539-r3" x="292.8" y="532.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-21)">Magenta</text><text class="terminal-2368587539-r1" x="390.4" y="532.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-21)">Red</text><text class="terminal-2368587539-r3" x="439.2" y="532.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-21)">Magenta</text><text class="terminal-2368587539-r1" x="536.8" y="532.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-21)">Red</text><text class="terminal-2368587539-r3" x="585.6" y="532.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-21)">Magenta</text><text class="terminal-2368587539-r1" x="683.2" y="532.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-21)">Red</text><text class="terminal-2368587539-r3" x="732" y="532.4" textLength="85.4" clip-path="url(#terminal-2368587539-line-21)">Magenta</text><text class="terminal-2368587539-r1" x="829.6" y="532.4" textLength="36.6" clip-path="url(#terminal-2368587539-line-21)">Red</text><text class="terminal-2368587539-r6" x="976" y="532.4" textLength="12.2" clip-path="url(#terminal-2368587539-line-21)">
|
||||
</text><text class="terminal-2368587539-r3" x="0" y="556.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-22)">Magenta</text><text class="terminal-2368587539-r1" x="97.6" y="556.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-22)">Red</text><text class="terminal-2368587539-r3" x="146.4" y="556.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-22)">Magenta</text><text class="terminal-2368587539-r1" x="244" y="556.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-22)">Red</text><text class="terminal-2368587539-r3" x="292.8" y="556.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-22)">Magenta</text><text class="terminal-2368587539-r1" x="390.4" y="556.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-22)">Red</text><text class="terminal-2368587539-r3" x="439.2" y="556.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-22)">Magenta</text><text class="terminal-2368587539-r1" x="536.8" y="556.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-22)">Red</text><text class="terminal-2368587539-r3" x="585.6" y="556.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-22)">Magenta</text><text class="terminal-2368587539-r1" x="683.2" y="556.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-22)">Red</text><text class="terminal-2368587539-r3" x="732" y="556.8" textLength="85.4" clip-path="url(#terminal-2368587539-line-22)">Magenta</text><text class="terminal-2368587539-r1" x="829.6" y="556.8" textLength="36.6" clip-path="url(#terminal-2368587539-line-22)">Red</text><text class="terminal-2368587539-r6" x="976" y="556.8" textLength="12.2" clip-path="url(#terminal-2368587539-line-22)">
|
||||
</text><text class="terminal-2368587539-r3" x="0" y="581.2" textLength="85.4" clip-path="url(#terminal-2368587539-line-23)">Magenta</text><text class="terminal-2368587539-r1" x="97.6" y="581.2" textLength="36.6" clip-path="url(#terminal-2368587539-line-23)">Red</text><text class="terminal-2368587539-r3" x="146.4" y="581.2" textLength="85.4" clip-path="url(#terminal-2368587539-line-23)">Magenta</text><text class="terminal-2368587539-r1" x="244" y="581.2" textLength="36.6" clip-path="url(#terminal-2368587539-line-23)">Red</text><text class="terminal-2368587539-r3" x="292.8" y="581.2" textLength="85.4" clip-path="url(#terminal-2368587539-line-23)">Magenta</text><text class="terminal-2368587539-r1" x="390.4" y="581.2" textLength="36.6" clip-path="url(#terminal-2368587539-line-23)">Red</text><text class="terminal-2368587539-r3" x="439.2" y="581.2" textLength="85.4" clip-path="url(#terminal-2368587539-line-23)">Magenta</text><text class="terminal-2368587539-r1" x="536.8" y="581.2" textLength="36.6" clip-path="url(#terminal-2368587539-line-23)">Red</text><text class="terminal-2368587539-r3" x="585.6" y="581.2" textLength="85.4" clip-path="url(#terminal-2368587539-line-23)">Magenta</text><text class="terminal-2368587539-r1" x="683.2" y="581.2" textLength="36.6" clip-path="url(#terminal-2368587539-line-23)">Red</text><text class="terminal-2368587539-r3" x="732" y="581.2" textLength="85.4" clip-path="url(#terminal-2368587539-line-23)">Magenta</text><text class="terminal-2368587539-r1" x="829.6" y="581.2" textLength="36.6" clip-path="url(#terminal-2368587539-line-23)">Red</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
@@ -19,138 +19,138 @@
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.terminal-4097857637-matrix {
|
||||
.terminal-1636454365-matrix {
|
||||
font-family: Fira Code, monospace;
|
||||
font-size: 20px;
|
||||
line-height: 24.4px;
|
||||
font-variant-east-asian: full-width;
|
||||
}
|
||||
|
||||
.terminal-4097857637-title {
|
||||
.terminal-1636454365-title {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
font-family: arial;
|
||||
}
|
||||
|
||||
.terminal-4097857637-r1 { fill: #646464 }
|
||||
.terminal-4097857637-r2 { fill: #c5c8c6 }
|
||||
.terminal-4097857637-r3 { fill: #0178d4 }
|
||||
.terminal-4097857637-r4 { fill: #e0e0e0 }
|
||||
.terminal-4097857637-r5 { fill: #00ff00 }
|
||||
.terminal-4097857637-r6 { fill: #000000 }
|
||||
.terminal-4097857637-r7 { fill: #121212 }
|
||||
.terminal-4097857637-r8 { fill: #e0e0e0;font-weight: bold }
|
||||
.terminal-4097857637-r9 { fill: #e0e0e0;font-weight: bold;text-decoration: underline; }
|
||||
.terminal-1636454365-r1 { fill: #646464 }
|
||||
.terminal-1636454365-r2 { fill: #c5c8c6 }
|
||||
.terminal-1636454365-r3 { fill: #0178d4 }
|
||||
.terminal-1636454365-r4 { fill: #e0e0e0 }
|
||||
.terminal-1636454365-r5 { fill: #00ff00 }
|
||||
.terminal-1636454365-r6 { fill: #000000 }
|
||||
.terminal-1636454365-r7 { fill: #121212 }
|
||||
.terminal-1636454365-r8 { fill: #e0e0e0;font-weight: bold }
|
||||
.terminal-1636454365-r9 { fill: #e0e0e0;font-weight: bold;text-decoration: underline; }
|
||||
</style>
|
||||
|
||||
<defs>
|
||||
<clipPath id="terminal-4097857637-clip-terminal">
|
||||
<clipPath id="terminal-1636454365-clip-terminal">
|
||||
<rect x="0" y="0" width="975.0" height="584.5999999999999" />
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-0">
|
||||
<clipPath id="terminal-1636454365-line-0">
|
||||
<rect x="0" y="1.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-1">
|
||||
<clipPath id="terminal-1636454365-line-1">
|
||||
<rect x="0" y="25.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-2">
|
||||
<clipPath id="terminal-1636454365-line-2">
|
||||
<rect x="0" y="50.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-3">
|
||||
<clipPath id="terminal-1636454365-line-3">
|
||||
<rect x="0" y="74.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-4">
|
||||
<clipPath id="terminal-1636454365-line-4">
|
||||
<rect x="0" y="99.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-5">
|
||||
<clipPath id="terminal-1636454365-line-5">
|
||||
<rect x="0" y="123.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-6">
|
||||
<clipPath id="terminal-1636454365-line-6">
|
||||
<rect x="0" y="147.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-7">
|
||||
<clipPath id="terminal-1636454365-line-7">
|
||||
<rect x="0" y="172.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-8">
|
||||
<clipPath id="terminal-1636454365-line-8">
|
||||
<rect x="0" y="196.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-9">
|
||||
<clipPath id="terminal-1636454365-line-9">
|
||||
<rect x="0" y="221.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-10">
|
||||
<clipPath id="terminal-1636454365-line-10">
|
||||
<rect x="0" y="245.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-11">
|
||||
<clipPath id="terminal-1636454365-line-11">
|
||||
<rect x="0" y="269.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-12">
|
||||
<clipPath id="terminal-1636454365-line-12">
|
||||
<rect x="0" y="294.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-13">
|
||||
<clipPath id="terminal-1636454365-line-13">
|
||||
<rect x="0" y="318.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-14">
|
||||
<clipPath id="terminal-1636454365-line-14">
|
||||
<rect x="0" y="343.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-15">
|
||||
<clipPath id="terminal-1636454365-line-15">
|
||||
<rect x="0" y="367.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-16">
|
||||
<clipPath id="terminal-1636454365-line-16">
|
||||
<rect x="0" y="391.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-17">
|
||||
<clipPath id="terminal-1636454365-line-17">
|
||||
<rect x="0" y="416.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-18">
|
||||
<clipPath id="terminal-1636454365-line-18">
|
||||
<rect x="0" y="440.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-19">
|
||||
<clipPath id="terminal-1636454365-line-19">
|
||||
<rect x="0" y="465.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-20">
|
||||
<clipPath id="terminal-1636454365-line-20">
|
||||
<rect x="0" y="489.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-21">
|
||||
<clipPath id="terminal-1636454365-line-21">
|
||||
<rect x="0" y="513.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-4097857637-line-22">
|
||||
<clipPath id="terminal-1636454365-line-22">
|
||||
<rect x="0" y="538.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="992" height="633.6" rx="8"/><text class="terminal-4097857637-title" fill="#c5c8c6" text-anchor="middle" x="496" y="27">SearchApp</text>
|
||||
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="992" height="633.6" rx="8"/><text class="terminal-1636454365-title" fill="#c5c8c6" text-anchor="middle" x="496" y="27">SearchApp</text>
|
||||
<g transform="translate(26,22)">
|
||||
<circle cx="0" cy="0" r="7" fill="#ff5f57"/>
|
||||
<circle cx="22" cy="0" r="7" fill="#febc2e"/>
|
||||
<circle cx="44" cy="0" r="7" fill="#28c840"/>
|
||||
</g>
|
||||
|
||||
<g transform="translate(9, 41)" clip-path="url(#terminal-4097857637-clip-terminal)">
|
||||
<rect fill="#121212" x="0" y="1.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="25.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="50.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="74.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="99.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="12.2" y="99.1" width="36.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="48.8" y="99.1" width="915" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="963.8" y="99.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="12.2" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="24.4" y="123.5" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="48.8" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="61" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#e0e0e0" x="73.2" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="85.4" y="123.5" width="866.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="951.6" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="963.8" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="12.2" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="24.4" y="147.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="48.8" y="147.9" width="915" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="963.8" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="172.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="196.7" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="24.4" y="196.7" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="36.6" y="196.7" width="939.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="221.1" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="24.4" y="221.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="36.6" y="221.1" width="939.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="245.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="269.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="294.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="318.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="343.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="367.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="391.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="416.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="440.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="465.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="489.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="513.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="538.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="562.7" width="976" height="24.65" shape-rendering="crispEdges"/>
|
||||
<g class="terminal-4097857637-matrix">
|
||||
<text class="terminal-4097857637-r1" x="0" y="20" textLength="976" clip-path="url(#terminal-4097857637-line-0)">Search Commands                                                                 </text><text class="terminal-4097857637-r2" x="976" y="20" textLength="12.2" clip-path="url(#terminal-4097857637-line-0)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="44.4" textLength="12.2" clip-path="url(#terminal-4097857637-line-1)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="68.8" textLength="12.2" clip-path="url(#terminal-4097857637-line-2)">
|
||||
</text><text class="terminal-4097857637-r3" x="0" y="93.2" textLength="976" clip-path="url(#terminal-4097857637-line-3)">▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔</text><text class="terminal-4097857637-r2" x="976" y="93.2" textLength="12.2" clip-path="url(#terminal-4097857637-line-3)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="117.6" textLength="12.2" clip-path="url(#terminal-4097857637-line-4)">
|
||||
</text><text class="terminal-4097857637-r6" x="24.4" y="142" textLength="12.2" clip-path="url(#terminal-4097857637-line-5)">🔎</text><text class="terminal-4097857637-r4" x="61" y="142" textLength="12.2" clip-path="url(#terminal-4097857637-line-5)">b</text><text class="terminal-4097857637-r2" x="976" y="142" textLength="12.2" clip-path="url(#terminal-4097857637-line-5)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="166.4" textLength="12.2" clip-path="url(#terminal-4097857637-line-6)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="190.8" textLength="12.2" clip-path="url(#terminal-4097857637-line-7)">
|
||||
</text><text class="terminal-4097857637-r9" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-4097857637-line-8)">b</text><text class="terminal-4097857637-r8" x="36.6" y="215.2" textLength="939.4" clip-path="url(#terminal-4097857637-line-8)">ar                                                                           </text><text class="terminal-4097857637-r2" x="976" y="215.2" textLength="12.2" clip-path="url(#terminal-4097857637-line-8)">
|
||||
</text><text class="terminal-4097857637-r9" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-4097857637-line-9)">b</text><text class="terminal-4097857637-r8" x="36.6" y="239.6" textLength="939.4" clip-path="url(#terminal-4097857637-line-9)">az                                                                           </text><text class="terminal-4097857637-r2" x="976" y="239.6" textLength="12.2" clip-path="url(#terminal-4097857637-line-9)">
|
||||
</text><text class="terminal-4097857637-r3" x="0" y="264" textLength="976" clip-path="url(#terminal-4097857637-line-10)">▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁</text><text class="terminal-4097857637-r2" x="976" y="264" textLength="12.2" clip-path="url(#terminal-4097857637-line-10)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="288.4" textLength="12.2" clip-path="url(#terminal-4097857637-line-11)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="312.8" textLength="12.2" clip-path="url(#terminal-4097857637-line-12)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="337.2" textLength="12.2" clip-path="url(#terminal-4097857637-line-13)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="361.6" textLength="12.2" clip-path="url(#terminal-4097857637-line-14)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="386" textLength="12.2" clip-path="url(#terminal-4097857637-line-15)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="410.4" textLength="12.2" clip-path="url(#terminal-4097857637-line-16)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="434.8" textLength="12.2" clip-path="url(#terminal-4097857637-line-17)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="459.2" textLength="12.2" clip-path="url(#terminal-4097857637-line-18)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="483.6" textLength="12.2" clip-path="url(#terminal-4097857637-line-19)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="508" textLength="12.2" clip-path="url(#terminal-4097857637-line-20)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="532.4" textLength="12.2" clip-path="url(#terminal-4097857637-line-21)">
|
||||
</text><text class="terminal-4097857637-r2" x="976" y="556.8" textLength="12.2" clip-path="url(#terminal-4097857637-line-22)">
|
||||
<g transform="translate(9, 41)" clip-path="url(#terminal-1636454365-clip-terminal)">
|
||||
<rect fill="#121212" x="0" y="1.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="25.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="50.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="74.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="99.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="12.2" y="99.1" width="36.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="48.8" y="99.1" width="915" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="963.8" y="99.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="12.2" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="24.4" y="123.5" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="48.8" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="61" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#e0e0e0" x="73.2" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="85.4" y="123.5" width="866.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="951.6" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="963.8" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="12.2" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="24.4" y="147.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="48.8" y="147.9" width="915" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="963.8" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="172.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="196.7" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="24.4" y="196.7" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="36.6" y="196.7" width="939.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="221.1" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="24.4" y="221.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="36.6" y="221.1" width="939.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="245.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="269.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="294.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="318.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="343.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="367.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="391.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="416.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="440.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="465.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="489.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="513.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="538.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="562.7" width="976" height="24.65" shape-rendering="crispEdges"/>
|
||||
<g class="terminal-1636454365-matrix">
|
||||
<text class="terminal-1636454365-r1" x="0" y="20" textLength="976" clip-path="url(#terminal-1636454365-line-0)">Search Commands                                                                 </text><text class="terminal-1636454365-r2" x="976" y="20" textLength="12.2" clip-path="url(#terminal-1636454365-line-0)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="44.4" textLength="12.2" clip-path="url(#terminal-1636454365-line-1)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="68.8" textLength="12.2" clip-path="url(#terminal-1636454365-line-2)">
|
||||
</text><text class="terminal-1636454365-r3" x="0" y="93.2" textLength="976" clip-path="url(#terminal-1636454365-line-3)">▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔</text><text class="terminal-1636454365-r2" x="976" y="93.2" textLength="12.2" clip-path="url(#terminal-1636454365-line-3)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="117.6" textLength="12.2" clip-path="url(#terminal-1636454365-line-4)">
|
||||
</text><text class="terminal-1636454365-r6" x="24.4" y="142" textLength="12.2" clip-path="url(#terminal-1636454365-line-5)">🔎</text><text class="terminal-1636454365-r4" x="61" y="142" textLength="12.2" clip-path="url(#terminal-1636454365-line-5)">b</text><text class="terminal-1636454365-r2" x="976" y="142" textLength="12.2" clip-path="url(#terminal-1636454365-line-5)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="166.4" textLength="12.2" clip-path="url(#terminal-1636454365-line-6)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="190.8" textLength="12.2" clip-path="url(#terminal-1636454365-line-7)">
|
||||
</text><text class="terminal-1636454365-r9" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-1636454365-line-8)">b</text><text class="terminal-1636454365-r8" x="36.6" y="215.2" textLength="939.4" clip-path="url(#terminal-1636454365-line-8)">ar                                                                           </text><text class="terminal-1636454365-r2" x="976" y="215.2" textLength="12.2" clip-path="url(#terminal-1636454365-line-8)">
|
||||
</text><text class="terminal-1636454365-r9" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1636454365-line-9)">b</text><text class="terminal-1636454365-r8" x="36.6" y="239.6" textLength="939.4" clip-path="url(#terminal-1636454365-line-9)">az                                                                           </text><text class="terminal-1636454365-r2" x="976" y="239.6" textLength="12.2" clip-path="url(#terminal-1636454365-line-9)">
|
||||
</text><text class="terminal-1636454365-r3" x="0" y="264" textLength="976" clip-path="url(#terminal-1636454365-line-10)">▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁</text><text class="terminal-1636454365-r2" x="976" y="264" textLength="12.2" clip-path="url(#terminal-1636454365-line-10)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="288.4" textLength="12.2" clip-path="url(#terminal-1636454365-line-11)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="312.8" textLength="12.2" clip-path="url(#terminal-1636454365-line-12)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="337.2" textLength="12.2" clip-path="url(#terminal-1636454365-line-13)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="361.6" textLength="12.2" clip-path="url(#terminal-1636454365-line-14)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="386" textLength="12.2" clip-path="url(#terminal-1636454365-line-15)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="410.4" textLength="12.2" clip-path="url(#terminal-1636454365-line-16)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="434.8" textLength="12.2" clip-path="url(#terminal-1636454365-line-17)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="459.2" textLength="12.2" clip-path="url(#terminal-1636454365-line-18)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="483.6" textLength="12.2" clip-path="url(#terminal-1636454365-line-19)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="508" textLength="12.2" clip-path="url(#terminal-1636454365-line-20)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="532.4" textLength="12.2" clip-path="url(#terminal-1636454365-line-21)">
|
||||
</text><text class="terminal-1636454365-r2" x="976" y="556.8" textLength="12.2" clip-path="url(#terminal-1636454365-line-22)">
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
@@ -19,138 +19,138 @@
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.terminal-2694158592-matrix {
|
||||
.terminal-1531744096-matrix {
|
||||
font-family: Fira Code, monospace;
|
||||
font-size: 20px;
|
||||
line-height: 24.4px;
|
||||
font-variant-east-asian: full-width;
|
||||
}
|
||||
|
||||
.terminal-2694158592-title {
|
||||
.terminal-1531744096-title {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
font-family: arial;
|
||||
}
|
||||
|
||||
.terminal-2694158592-r1 { fill: #646464 }
|
||||
.terminal-2694158592-r2 { fill: #c5c8c6 }
|
||||
.terminal-2694158592-r3 { fill: #0178d4 }
|
||||
.terminal-2694158592-r4 { fill: #e0e0e0 }
|
||||
.terminal-2694158592-r5 { fill: #00ff00 }
|
||||
.terminal-2694158592-r6 { fill: #000000 }
|
||||
.terminal-2694158592-r7 { fill: #121212 }
|
||||
.terminal-2694158592-r8 { fill: #737373 }
|
||||
.terminal-2694158592-r9 { fill: #e0e0e0;font-weight: bold }
|
||||
.terminal-1531744096-r1 { fill: #646464 }
|
||||
.terminal-1531744096-r2 { fill: #c5c8c6 }
|
||||
.terminal-1531744096-r3 { fill: #0178d4 }
|
||||
.terminal-1531744096-r4 { fill: #e0e0e0 }
|
||||
.terminal-1531744096-r5 { fill: #00ff00 }
|
||||
.terminal-1531744096-r6 { fill: #000000 }
|
||||
.terminal-1531744096-r7 { fill: #121212 }
|
||||
.terminal-1531744096-r8 { fill: #6d7479 }
|
||||
.terminal-1531744096-r9 { fill: #e0e0e0;font-weight: bold }
|
||||
</style>
|
||||
|
||||
<defs>
|
||||
<clipPath id="terminal-2694158592-clip-terminal">
|
||||
<clipPath id="terminal-1531744096-clip-terminal">
|
||||
<rect x="0" y="0" width="975.0" height="584.5999999999999" />
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-0">
|
||||
<clipPath id="terminal-1531744096-line-0">
|
||||
<rect x="0" y="1.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-1">
|
||||
<clipPath id="terminal-1531744096-line-1">
|
||||
<rect x="0" y="25.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-2">
|
||||
<clipPath id="terminal-1531744096-line-2">
|
||||
<rect x="0" y="50.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-3">
|
||||
<clipPath id="terminal-1531744096-line-3">
|
||||
<rect x="0" y="74.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-4">
|
||||
<clipPath id="terminal-1531744096-line-4">
|
||||
<rect x="0" y="99.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-5">
|
||||
<clipPath id="terminal-1531744096-line-5">
|
||||
<rect x="0" y="123.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-6">
|
||||
<clipPath id="terminal-1531744096-line-6">
|
||||
<rect x="0" y="147.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-7">
|
||||
<clipPath id="terminal-1531744096-line-7">
|
||||
<rect x="0" y="172.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-8">
|
||||
<clipPath id="terminal-1531744096-line-8">
|
||||
<rect x="0" y="196.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-9">
|
||||
<clipPath id="terminal-1531744096-line-9">
|
||||
<rect x="0" y="221.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-10">
|
||||
<clipPath id="terminal-1531744096-line-10">
|
||||
<rect x="0" y="245.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-11">
|
||||
<clipPath id="terminal-1531744096-line-11">
|
||||
<rect x="0" y="269.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-12">
|
||||
<clipPath id="terminal-1531744096-line-12">
|
||||
<rect x="0" y="294.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-13">
|
||||
<clipPath id="terminal-1531744096-line-13">
|
||||
<rect x="0" y="318.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-14">
|
||||
<clipPath id="terminal-1531744096-line-14">
|
||||
<rect x="0" y="343.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-15">
|
||||
<clipPath id="terminal-1531744096-line-15">
|
||||
<rect x="0" y="367.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-16">
|
||||
<clipPath id="terminal-1531744096-line-16">
|
||||
<rect x="0" y="391.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-17">
|
||||
<clipPath id="terminal-1531744096-line-17">
|
||||
<rect x="0" y="416.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-18">
|
||||
<clipPath id="terminal-1531744096-line-18">
|
||||
<rect x="0" y="440.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-19">
|
||||
<clipPath id="terminal-1531744096-line-19">
|
||||
<rect x="0" y="465.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-20">
|
||||
<clipPath id="terminal-1531744096-line-20">
|
||||
<rect x="0" y="489.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-21">
|
||||
<clipPath id="terminal-1531744096-line-21">
|
||||
<rect x="0" y="513.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-2694158592-line-22">
|
||||
<clipPath id="terminal-1531744096-line-22">
|
||||
<rect x="0" y="538.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="992" height="633.6" rx="8"/><text class="terminal-2694158592-title" fill="#c5c8c6" text-anchor="middle" x="496" y="27">CommandPaletteApp</text>
|
||||
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="992" height="633.6" rx="8"/><text class="terminal-1531744096-title" fill="#c5c8c6" text-anchor="middle" x="496" y="27">CommandPaletteApp</text>
|
||||
<g transform="translate(26,22)">
|
||||
<circle cx="0" cy="0" r="7" fill="#ff5f57"/>
|
||||
<circle cx="22" cy="0" r="7" fill="#febc2e"/>
|
||||
<circle cx="44" cy="0" r="7" fill="#28c840"/>
|
||||
</g>
|
||||
|
||||
<g transform="translate(9, 41)" clip-path="url(#terminal-2694158592-clip-terminal)">
|
||||
<rect fill="#121212" x="0" y="1.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="25.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="50.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="74.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="99.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="12.2" y="99.1" width="36.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="48.8" y="99.1" width="915" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="963.8" y="99.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="12.2" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="24.4" y="123.5" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="48.8" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#e0e0e0" x="61" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="73.2" y="123.5" width="231.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="305" y="123.5" width="646.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="951.6" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="963.8" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="12.2" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="24.4" y="147.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="48.8" y="147.9" width="915" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="963.8" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="172.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="196.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="221.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="245.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="269.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="294.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="318.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="343.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="367.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="391.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="416.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#1e1e1e" x="0" y="440.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="465.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="489.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="513.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="538.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="562.7" width="976" height="24.65" shape-rendering="crispEdges"/>
|
||||
<g class="terminal-2694158592-matrix">
|
||||
<text class="terminal-2694158592-r2" x="976" y="20" textLength="12.2" clip-path="url(#terminal-2694158592-line-0)">
|
||||
</text><text class="terminal-2694158592-r2" x="976" y="44.4" textLength="12.2" clip-path="url(#terminal-2694158592-line-1)">
|
||||
</text><text class="terminal-2694158592-r2" x="976" y="68.8" textLength="12.2" clip-path="url(#terminal-2694158592-line-2)">
|
||||
</text><text class="terminal-2694158592-r3" x="0" y="93.2" textLength="976" clip-path="url(#terminal-2694158592-line-3)">▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔</text><text class="terminal-2694158592-r2" x="976" y="93.2" textLength="12.2" clip-path="url(#terminal-2694158592-line-3)">
|
||||
</text><text class="terminal-2694158592-r2" x="976" y="117.6" textLength="12.2" clip-path="url(#terminal-2694158592-line-4)">
|
||||
</text><text class="terminal-2694158592-r6" x="24.4" y="142" textLength="12.2" clip-path="url(#terminal-2694158592-line-5)">🔎</text><text class="terminal-2694158592-r7" x="61" y="142" textLength="12.2" clip-path="url(#terminal-2694158592-line-5)">S</text><text class="terminal-2694158592-r8" x="73.2" y="142" textLength="231.8" clip-path="url(#terminal-2694158592-line-5)">earch for commands…</text><text class="terminal-2694158592-r2" x="976" y="142" textLength="12.2" clip-path="url(#terminal-2694158592-line-5)">
|
||||
</text><text class="terminal-2694158592-r2" x="976" y="166.4" textLength="12.2" clip-path="url(#terminal-2694158592-line-6)">
|
||||
</text><text class="terminal-2694158592-r2" x="976" y="190.8" textLength="12.2" clip-path="url(#terminal-2694158592-line-7)">
|
||||
</text><text class="terminal-2694158592-r9" x="0" y="215.2" textLength="976" clip-path="url(#terminal-2694158592-line-8)">  This is a test of this code 0                                                 </text><text class="terminal-2694158592-r2" x="976" y="215.2" textLength="12.2" clip-path="url(#terminal-2694158592-line-8)">
|
||||
</text><text class="terminal-2694158592-r9" x="0" y="239.6" textLength="976" clip-path="url(#terminal-2694158592-line-9)">  This is a test of this code 1                                                 </text><text class="terminal-2694158592-r2" x="976" y="239.6" textLength="12.2" clip-path="url(#terminal-2694158592-line-9)">
|
||||
</text><text class="terminal-2694158592-r9" x="0" y="264" textLength="976" clip-path="url(#terminal-2694158592-line-10)">  This is a test of this code 2                                                 </text><text class="terminal-2694158592-r2" x="976" y="264" textLength="12.2" clip-path="url(#terminal-2694158592-line-10)">
|
||||
</text><text class="terminal-2694158592-r9" x="0" y="288.4" textLength="976" clip-path="url(#terminal-2694158592-line-11)">  This is a test of this code 3                                                 </text><text class="terminal-2694158592-r2" x="976" y="288.4" textLength="12.2" clip-path="url(#terminal-2694158592-line-11)">
|
||||
</text><text class="terminal-2694158592-r9" x="0" y="312.8" textLength="976" clip-path="url(#terminal-2694158592-line-12)">  This is a test of this code 4                                                 </text><text class="terminal-2694158592-r2" x="976" y="312.8" textLength="12.2" clip-path="url(#terminal-2694158592-line-12)">
|
||||
</text><text class="terminal-2694158592-r9" x="0" y="337.2" textLength="976" clip-path="url(#terminal-2694158592-line-13)">  This is a test of this code 5                                                 </text><text class="terminal-2694158592-r2" x="976" y="337.2" textLength="12.2" clip-path="url(#terminal-2694158592-line-13)">
|
||||
</text><text class="terminal-2694158592-r9" x="0" y="361.6" textLength="976" clip-path="url(#terminal-2694158592-line-14)">  This is a test of this code 6                                                 </text><text class="terminal-2694158592-r2" x="976" y="361.6" textLength="12.2" clip-path="url(#terminal-2694158592-line-14)">
|
||||
</text><text class="terminal-2694158592-r9" x="0" y="386" textLength="976" clip-path="url(#terminal-2694158592-line-15)">  This is a test of this code 7                                                 </text><text class="terminal-2694158592-r2" x="976" y="386" textLength="12.2" clip-path="url(#terminal-2694158592-line-15)">
|
||||
</text><text class="terminal-2694158592-r9" x="0" y="410.4" textLength="976" clip-path="url(#terminal-2694158592-line-16)">  This is a test of this code 8                                                 </text><text class="terminal-2694158592-r2" x="976" y="410.4" textLength="12.2" clip-path="url(#terminal-2694158592-line-16)">
|
||||
</text><text class="terminal-2694158592-r9" x="0" y="434.8" textLength="976" clip-path="url(#terminal-2694158592-line-17)">  This is a test of this code 9                                                 </text><text class="terminal-2694158592-r2" x="976" y="434.8" textLength="12.2" clip-path="url(#terminal-2694158592-line-17)">
|
||||
</text><text class="terminal-2694158592-r3" x="0" y="459.2" textLength="976" clip-path="url(#terminal-2694158592-line-18)">▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁</text><text class="terminal-2694158592-r2" x="976" y="459.2" textLength="12.2" clip-path="url(#terminal-2694158592-line-18)">
|
||||
</text><text class="terminal-2694158592-r2" x="976" y="483.6" textLength="12.2" clip-path="url(#terminal-2694158592-line-19)">
|
||||
</text><text class="terminal-2694158592-r2" x="976" y="508" textLength="12.2" clip-path="url(#terminal-2694158592-line-20)">
|
||||
</text><text class="terminal-2694158592-r2" x="976" y="532.4" textLength="12.2" clip-path="url(#terminal-2694158592-line-21)">
|
||||
</text><text class="terminal-2694158592-r2" x="976" y="556.8" textLength="12.2" clip-path="url(#terminal-2694158592-line-22)">
|
||||
<g transform="translate(9, 41)" clip-path="url(#terminal-1531744096-clip-terminal)">
|
||||
<rect fill="#121212" x="0" y="1.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="25.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="50.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="74.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="99.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="12.2" y="99.1" width="36.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="48.8" y="99.1" width="915" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="963.8" y="99.1" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="12.2" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="24.4" y="123.5" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="48.8" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#e0e0e0" x="61" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="73.2" y="123.5" width="231.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="305" y="123.5" width="646.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="951.6" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="963.8" y="123.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="12.2" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="24.4" y="147.9" width="24.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="48.8" y="147.9" width="915" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="963.8" y="147.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="172.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="196.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="221.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="245.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="269.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="294.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="318.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="343.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="367.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="391.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="416.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#141f27" x="0" y="440.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="465.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="489.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="513.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="538.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="562.7" width="976" height="24.65" shape-rendering="crispEdges"/>
|
||||
<g class="terminal-1531744096-matrix">
|
||||
<text class="terminal-1531744096-r2" x="976" y="20" textLength="12.2" clip-path="url(#terminal-1531744096-line-0)">
|
||||
</text><text class="terminal-1531744096-r2" x="976" y="44.4" textLength="12.2" clip-path="url(#terminal-1531744096-line-1)">
|
||||
</text><text class="terminal-1531744096-r2" x="976" y="68.8" textLength="12.2" clip-path="url(#terminal-1531744096-line-2)">
|
||||
</text><text class="terminal-1531744096-r3" x="0" y="93.2" textLength="976" clip-path="url(#terminal-1531744096-line-3)">▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔</text><text class="terminal-1531744096-r2" x="976" y="93.2" textLength="12.2" clip-path="url(#terminal-1531744096-line-3)">
|
||||
</text><text class="terminal-1531744096-r2" x="976" y="117.6" textLength="12.2" clip-path="url(#terminal-1531744096-line-4)">
|
||||
</text><text class="terminal-1531744096-r6" x="24.4" y="142" textLength="12.2" clip-path="url(#terminal-1531744096-line-5)">🔎</text><text class="terminal-1531744096-r7" x="61" y="142" textLength="12.2" clip-path="url(#terminal-1531744096-line-5)">S</text><text class="terminal-1531744096-r8" x="73.2" y="142" textLength="231.8" clip-path="url(#terminal-1531744096-line-5)">earch for commands…</text><text class="terminal-1531744096-r2" x="976" y="142" textLength="12.2" clip-path="url(#terminal-1531744096-line-5)">
|
||||
</text><text class="terminal-1531744096-r2" x="976" y="166.4" textLength="12.2" clip-path="url(#terminal-1531744096-line-6)">
|
||||
</text><text class="terminal-1531744096-r2" x="976" y="190.8" textLength="12.2" clip-path="url(#terminal-1531744096-line-7)">
|
||||
</text><text class="terminal-1531744096-r9" x="0" y="215.2" textLength="976" clip-path="url(#terminal-1531744096-line-8)">  This is a test of this code 0                                                 </text><text class="terminal-1531744096-r2" x="976" y="215.2" textLength="12.2" clip-path="url(#terminal-1531744096-line-8)">
|
||||
</text><text class="terminal-1531744096-r9" x="0" y="239.6" textLength="976" clip-path="url(#terminal-1531744096-line-9)">  This is a test of this code 1                                                 </text><text class="terminal-1531744096-r2" x="976" y="239.6" textLength="12.2" clip-path="url(#terminal-1531744096-line-9)">
|
||||
</text><text class="terminal-1531744096-r9" x="0" y="264" textLength="976" clip-path="url(#terminal-1531744096-line-10)">  This is a test of this code 2                                                 </text><text class="terminal-1531744096-r2" x="976" y="264" textLength="12.2" clip-path="url(#terminal-1531744096-line-10)">
|
||||
</text><text class="terminal-1531744096-r9" x="0" y="288.4" textLength="976" clip-path="url(#terminal-1531744096-line-11)">  This is a test of this code 3                                                 </text><text class="terminal-1531744096-r2" x="976" y="288.4" textLength="12.2" clip-path="url(#terminal-1531744096-line-11)">
|
||||
</text><text class="terminal-1531744096-r9" x="0" y="312.8" textLength="976" clip-path="url(#terminal-1531744096-line-12)">  This is a test of this code 4                                                 </text><text class="terminal-1531744096-r2" x="976" y="312.8" textLength="12.2" clip-path="url(#terminal-1531744096-line-12)">
|
||||
</text><text class="terminal-1531744096-r9" x="0" y="337.2" textLength="976" clip-path="url(#terminal-1531744096-line-13)">  This is a test of this code 5                                                 </text><text class="terminal-1531744096-r2" x="976" y="337.2" textLength="12.2" clip-path="url(#terminal-1531744096-line-13)">
|
||||
</text><text class="terminal-1531744096-r9" x="0" y="361.6" textLength="976" clip-path="url(#terminal-1531744096-line-14)">  This is a test of this code 6                                                 </text><text class="terminal-1531744096-r2" x="976" y="361.6" textLength="12.2" clip-path="url(#terminal-1531744096-line-14)">
|
||||
</text><text class="terminal-1531744096-r9" x="0" y="386" textLength="976" clip-path="url(#terminal-1531744096-line-15)">  This is a test of this code 7                                                 </text><text class="terminal-1531744096-r2" x="976" y="386" textLength="12.2" clip-path="url(#terminal-1531744096-line-15)">
|
||||
</text><text class="terminal-1531744096-r9" x="0" y="410.4" textLength="976" clip-path="url(#terminal-1531744096-line-16)">  This is a test of this code 8                                                 </text><text class="terminal-1531744096-r2" x="976" y="410.4" textLength="12.2" clip-path="url(#terminal-1531744096-line-16)">
|
||||
</text><text class="terminal-1531744096-r9" x="0" y="434.8" textLength="976" clip-path="url(#terminal-1531744096-line-17)">  This is a test of this code 9                                                 </text><text class="terminal-1531744096-r2" x="976" y="434.8" textLength="12.2" clip-path="url(#terminal-1531744096-line-17)">
|
||||
</text><text class="terminal-1531744096-r3" x="0" y="459.2" textLength="976" clip-path="url(#terminal-1531744096-line-18)">▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁</text><text class="terminal-1531744096-r2" x="976" y="459.2" textLength="12.2" clip-path="url(#terminal-1531744096-line-18)">
|
||||
</text><text class="terminal-1531744096-r2" x="976" y="483.6" textLength="12.2" clip-path="url(#terminal-1531744096-line-19)">
|
||||
</text><text class="terminal-1531744096-r2" x="976" y="508" textLength="12.2" clip-path="url(#terminal-1531744096-line-20)">
|
||||
</text><text class="terminal-1531744096-r2" x="976" y="532.4" textLength="12.2" clip-path="url(#terminal-1531744096-line-21)">
|
||||
</text><text class="terminal-1531744096-r2" x="976" y="556.8" textLength="12.2" clip-path="url(#terminal-1531744096-line-22)">
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@@ -19,133 +19,133 @@
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.terminal-3814412032-matrix {
|
||||
.terminal-1646678289-matrix {
|
||||
font-family: Fira Code, monospace;
|
||||
font-size: 20px;
|
||||
line-height: 24.4px;
|
||||
font-variant-east-asian: full-width;
|
||||
}
|
||||
|
||||
.terminal-3814412032-title {
|
||||
.terminal-1646678289-title {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
font-family: arial;
|
||||
}
|
||||
|
||||
.terminal-3814412032-r1 { fill: #e0e0e0 }
|
||||
.terminal-3814412032-r2 { fill: #c5c8c6 }
|
||||
.terminal-3814412032-r3 { fill: #e0e0e0;font-weight: bold }
|
||||
.terminal-1646678289-r1 { fill: #e0e0e0 }
|
||||
.terminal-1646678289-r2 { fill: #c5c8c6 }
|
||||
.terminal-1646678289-r3 { fill: #e0e0e0;font-weight: bold }
|
||||
</style>
|
||||
|
||||
<defs>
|
||||
<clipPath id="terminal-3814412032-clip-terminal">
|
||||
<clipPath id="terminal-1646678289-clip-terminal">
|
||||
<rect x="0" y="0" width="975.0" height="584.5999999999999" />
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-0">
|
||||
<clipPath id="terminal-1646678289-line-0">
|
||||
<rect x="0" y="1.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-1">
|
||||
<clipPath id="terminal-1646678289-line-1">
|
||||
<rect x="0" y="25.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-2">
|
||||
<clipPath id="terminal-1646678289-line-2">
|
||||
<rect x="0" y="50.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-3">
|
||||
<clipPath id="terminal-1646678289-line-3">
|
||||
<rect x="0" y="74.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-4">
|
||||
<clipPath id="terminal-1646678289-line-4">
|
||||
<rect x="0" y="99.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-5">
|
||||
<clipPath id="terminal-1646678289-line-5">
|
||||
<rect x="0" y="123.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-6">
|
||||
<clipPath id="terminal-1646678289-line-6">
|
||||
<rect x="0" y="147.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-7">
|
||||
<clipPath id="terminal-1646678289-line-7">
|
||||
<rect x="0" y="172.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-8">
|
||||
<clipPath id="terminal-1646678289-line-8">
|
||||
<rect x="0" y="196.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-9">
|
||||
<clipPath id="terminal-1646678289-line-9">
|
||||
<rect x="0" y="221.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-10">
|
||||
<clipPath id="terminal-1646678289-line-10">
|
||||
<rect x="0" y="245.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-11">
|
||||
<clipPath id="terminal-1646678289-line-11">
|
||||
<rect x="0" y="269.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-12">
|
||||
<clipPath id="terminal-1646678289-line-12">
|
||||
<rect x="0" y="294.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-13">
|
||||
<clipPath id="terminal-1646678289-line-13">
|
||||
<rect x="0" y="318.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-14">
|
||||
<clipPath id="terminal-1646678289-line-14">
|
||||
<rect x="0" y="343.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-15">
|
||||
<clipPath id="terminal-1646678289-line-15">
|
||||
<rect x="0" y="367.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-16">
|
||||
<clipPath id="terminal-1646678289-line-16">
|
||||
<rect x="0" y="391.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-17">
|
||||
<clipPath id="terminal-1646678289-line-17">
|
||||
<rect x="0" y="416.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-18">
|
||||
<clipPath id="terminal-1646678289-line-18">
|
||||
<rect x="0" y="440.7" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-19">
|
||||
<clipPath id="terminal-1646678289-line-19">
|
||||
<rect x="0" y="465.1" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-20">
|
||||
<clipPath id="terminal-1646678289-line-20">
|
||||
<rect x="0" y="489.5" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-21">
|
||||
<clipPath id="terminal-1646678289-line-21">
|
||||
<rect x="0" y="513.9" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3814412032-line-22">
|
||||
<clipPath id="terminal-1646678289-line-22">
|
||||
<rect x="0" y="538.3" width="976" height="24.65"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="992" height="633.6" rx="8"/><text class="terminal-3814412032-title" fill="#c5c8c6" text-anchor="middle" x="496" y="27">DigitApp</text>
|
||||
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="992" height="633.6" rx="8"/><text class="terminal-1646678289-title" fill="#c5c8c6" text-anchor="middle" x="496" y="27">DigitApp</text>
|
||||
<g transform="translate(26,22)">
|
||||
<circle cx="0" cy="0" r="7" fill="#ff5f57"/>
|
||||
<circle cx="22" cy="0" r="7" fill="#febc2e"/>
|
||||
<circle cx="44" cy="0" r="7" fill="#28c840"/>
|
||||
</g>
|
||||
|
||||
<g transform="translate(9, 41)" clip-path="url(#terminal-3814412032-clip-terminal)">
|
||||
<g transform="translate(9, 41)" clip-path="url(#terminal-1646678289-clip-terminal)">
|
||||
<rect fill="#121212" x="0" y="1.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="25.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="50.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="74.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="99.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="123.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="147.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="172.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="196.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="221.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="245.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="269.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="294.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="318.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="343.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="367.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="391.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="416.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="440.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="465.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="489.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="513.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="538.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="562.7" width="976" height="24.65" shape-rendering="crispEdges"/>
|
||||
<g class="terminal-3814412032-matrix">
|
||||
<text class="terminal-3814412032-r1" x="0" y="20" textLength="976" clip-path="url(#terminal-3814412032-line-0)">╶─╮ ╶╮ ╷ ╷╶╮ ╭─╴╭─╮╶─╮╭─╴╭─╴╶─╮╭─╴╭─╮                                           </text><text class="terminal-3814412032-r2" x="976" y="20" textLength="12.2" clip-path="url(#terminal-3814412032-line-0)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="44.4" textLength="976" clip-path="url(#terminal-3814412032-line-1)"> ─┤  │ ╰─┤ │ ╰─╮╰─┤┌─┘├─╮╰─╮ ─┤╰─╮╰─┤                                           </text><text class="terminal-3814412032-r2" x="976" y="44.4" textLength="12.2" clip-path="url(#terminal-3814412032-line-1)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="68.8" textLength="976" clip-path="url(#terminal-3814412032-line-2)">╶─╯•╶┴╴  ╵╶┴╴╶─╯╶─╯╰─╴╰─╯╶─╯╶─╯╶─╯╶─╯                                           </text><text class="terminal-3814412032-r2" x="976" y="68.8" textLength="12.2" clip-path="url(#terminal-3814412032-line-2)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="93.2" textLength="976" clip-path="url(#terminal-3814412032-line-3)">             ╭─╮╶╮ ╶─╮╶─╮╷ ╷╭─╴╭─╴╶─┐╭─╮╭─╮        ╭─╮┌─╮╭─╮┌─╮╭─╴╭─╴           </text><text class="terminal-3814412032-r2" x="976" y="93.2" textLength="12.2" clip-path="url(#terminal-3814412032-line-3)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="117.6" textLength="976" clip-path="url(#terminal-3814412032-line-4)">             │ │ │ ┌─┘ ─┤╰─┤╰─╮├─╮  │├─┤╰─┤╶┼╴╶─╴  ├─┤├─┤│  │ │├─ ├─            </text><text class="terminal-3814412032-r2" x="976" y="117.6" textLength="12.2" clip-path="url(#terminal-3814412032-line-4)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="142" textLength="976" clip-path="url(#terminal-3814412032-line-5)">             ╰─╯╶┴╴╰─╴╶─╯  ╵╶─╯╰─╯  ╵╰─╯╶─╯      •,╵ ╵└─╯╰─╯└─╯╰─╴╵             </text><text class="terminal-3814412032-r2" x="976" y="142" textLength="12.2" clip-path="url(#terminal-3814412032-line-5)">
|
||||
</text><text class="terminal-3814412032-r3" x="0" y="166.4" textLength="976" clip-path="url(#terminal-3814412032-line-6)">             ┏━┓ ┓ ╺━┓╺━┓╻ ╻┏━╸┏━╸╺━┓┏━┓┏━┓        ╭─╮┌─╮╭─╮┌─╮╭─╴╭─╴           </text><text class="terminal-3814412032-r2" x="976" y="166.4" textLength="12.2" clip-path="url(#terminal-3814412032-line-6)">
|
||||
</text><text class="terminal-3814412032-r3" x="0" y="190.8" textLength="976" clip-path="url(#terminal-3814412032-line-7)">             ┃ ┃ ┃ ┏━┛ ━┫┗━┫┗━┓┣━┓  ┃┣━┫┗━┫╺╋╸╺━╸  ├─┤├─┤│  │ │├─ ├─            </text><text class="terminal-3814412032-r2" x="976" y="190.8" textLength="12.2" clip-path="url(#terminal-3814412032-line-7)">
|
||||
</text><text class="terminal-3814412032-r3" x="0" y="215.2" textLength="976" clip-path="url(#terminal-3814412032-line-8)">             ┗━┛╺┻╸┗━╸╺━┛  ╹╺━┛┗━┛  ╹┗━┛╺━┛      •,╵ ╵└─╯╰─╯└─╯╰─╴╵             </text><text class="terminal-3814412032-r2" x="976" y="215.2" textLength="12.2" clip-path="url(#terminal-3814412032-line-8)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="239.6" textLength="976" clip-path="url(#terminal-3814412032-line-9)">                                                              ╶─╮   ╶╮ ╭─╮ ^ ╷ ╷</text><text class="terminal-3814412032-r2" x="976" y="239.6" textLength="12.2" clip-path="url(#terminal-3814412032-line-9)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="264" textLength="976" clip-path="url(#terminal-3814412032-line-10)">                                                               ─┤ ×  │ │ │   ╰─┤</text><text class="terminal-3814412032-r2" x="976" y="264" textLength="12.2" clip-path="url(#terminal-3814412032-line-10)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="288.4" textLength="976" clip-path="url(#terminal-3814412032-line-11)">                                                              ╶─╯   ╶┴╴╰─╯     ╵</text><text class="terminal-3814412032-r2" x="976" y="288.4" textLength="12.2" clip-path="url(#terminal-3814412032-line-11)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="312.8" textLength="976" clip-path="url(#terminal-3814412032-line-12)">                                                              ╶─╮   ╶╮ ╭─╮ ^ ╷ ╷</text><text class="terminal-3814412032-r2" x="976" y="312.8" textLength="12.2" clip-path="url(#terminal-3814412032-line-12)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="337.2" textLength="976" clip-path="url(#terminal-3814412032-line-13)">                                                               ─┤ ×  │ │ │   ╰─┤</text><text class="terminal-3814412032-r2" x="976" y="337.2" textLength="12.2" clip-path="url(#terminal-3814412032-line-13)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="361.6" textLength="976" clip-path="url(#terminal-3814412032-line-14)">                                                              ╶─╯   ╶┴╴╰─╯     ╵</text><text class="terminal-3814412032-r2" x="976" y="361.6" textLength="12.2" clip-path="url(#terminal-3814412032-line-14)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="386" textLength="976" clip-path="url(#terminal-3814412032-line-15)">╭╴ ╭╫╮╶╮ ╶─╮╶─╮ ╷ ╷╭─╴ ╶╮                                                       </text><text class="terminal-3814412032-r2" x="976" y="386" textLength="12.2" clip-path="url(#terminal-3814412032-line-15)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="410.4" textLength="976" clip-path="url(#terminal-3814412032-line-16)">│  ╰╫╮ │ ┌─┘ ─┤ ╰─┤╰─╮  │                                                       </text><text class="terminal-3814412032-r2" x="976" y="410.4" textLength="12.2" clip-path="url(#terminal-3814412032-line-16)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="434.8" textLength="976" clip-path="url(#terminal-3814412032-line-17)">╰╴ ╰╫╯╶┴╴╰─╴╶─╯•  ╵╶─╯ ╶╯                                                       </text><text class="terminal-3814412032-r2" x="976" y="434.8" textLength="12.2" clip-path="url(#terminal-3814412032-line-17)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="459.2" textLength="976" clip-path="url(#terminal-3814412032-line-18)">╭─╮╶╮ ╶─╮╶─╮ ╷ ╷╭─╴                                                             </text><text class="terminal-3814412032-r2" x="976" y="459.2" textLength="12.2" clip-path="url(#terminal-3814412032-line-18)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="483.6" textLength="976" clip-path="url(#terminal-3814412032-line-19)">╪═  │ ┌─┘ ─┤ ╰─┤╰─╮                                                             </text><text class="terminal-3814412032-r2" x="976" y="483.6" textLength="12.2" clip-path="url(#terminal-3814412032-line-19)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="508" textLength="976" clip-path="url(#terminal-3814412032-line-20)">┴─╴╶┴╴╰─╴╶─╯•  ╵╶─╯                                                             </text><text class="terminal-3814412032-r2" x="976" y="508" textLength="12.2" clip-path="url(#terminal-3814412032-line-20)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="532.4" textLength="976" clip-path="url(#terminal-3814412032-line-21)">╭─╮╶╮ ╶─╮╶─╮ ╷ ╷╭─╴                                                             </text><text class="terminal-3814412032-r2" x="976" y="532.4" textLength="12.2" clip-path="url(#terminal-3814412032-line-21)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="556.8" textLength="976" clip-path="url(#terminal-3814412032-line-22)">╪═  │ ┌─┘ ─┤ ╰─┤╰─╮                                                             </text><text class="terminal-3814412032-r2" x="976" y="556.8" textLength="12.2" clip-path="url(#terminal-3814412032-line-22)">
|
||||
</text><text class="terminal-3814412032-r1" x="0" y="581.2" textLength="976" clip-path="url(#terminal-3814412032-line-23)">╰─╯╶┴╴╰─╴╶─╯•  ╵╶─╯                                                             </text>
|
||||
<g class="terminal-1646678289-matrix">
|
||||
<text class="terminal-1646678289-r1" x="0" y="20" textLength="976" clip-path="url(#terminal-1646678289-line-0)">╶─╮ ╶╮ ╷ ╷╶╮ ╭─╴╭─╮╶─╮╭─╴╭─╴╶─╮╭─╴╭─╮                                           </text><text class="terminal-1646678289-r2" x="976" y="20" textLength="12.2" clip-path="url(#terminal-1646678289-line-0)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="44.4" textLength="976" clip-path="url(#terminal-1646678289-line-1)"> ─┤  │ ╰─┤ │ ╰─╮╰─┤┌─┘├─╮╰─╮ ─┤╰─╮╰─┤                                           </text><text class="terminal-1646678289-r2" x="976" y="44.4" textLength="12.2" clip-path="url(#terminal-1646678289-line-1)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="68.8" textLength="976" clip-path="url(#terminal-1646678289-line-2)">╶─╯•╶┴╴  ╵╶┴╴╶─╯╶─╯╰─╴╰─╯╶─╯╶─╯╶─╯╶─╯                                           </text><text class="terminal-1646678289-r2" x="976" y="68.8" textLength="12.2" clip-path="url(#terminal-1646678289-line-2)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="93.2" textLength="976" clip-path="url(#terminal-1646678289-line-3)">             ╭─╮╶╮ ╶─╮╶─╮╷ ╷╭─╴╭─╴╶─┐╭─╮╭─╮        ╭─╮┌─╮╭─╮┌─╮╭─╴╭─╴           </text><text class="terminal-1646678289-r2" x="976" y="93.2" textLength="12.2" clip-path="url(#terminal-1646678289-line-3)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="117.6" textLength="976" clip-path="url(#terminal-1646678289-line-4)">             │ │ │ ┌─┘ ─┤╰─┤╰─╮├─╮  │├─┤╰─┤╶┼╴╶─╴  ├─┤├─┤│  │ │├─ ├─            </text><text class="terminal-1646678289-r2" x="976" y="117.6" textLength="12.2" clip-path="url(#terminal-1646678289-line-4)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="142" textLength="976" clip-path="url(#terminal-1646678289-line-5)">             ╰─╯╶┴╴╰─╴╶─╯  ╵╶─╯╰─╯  ╵╰─╯╶─╯      •,╵ ╵└─╯╰─╯└─╯╰─╴╵             </text><text class="terminal-1646678289-r2" x="976" y="142" textLength="12.2" clip-path="url(#terminal-1646678289-line-5)">
|
||||
</text><text class="terminal-1646678289-r3" x="0" y="166.4" textLength="976" clip-path="url(#terminal-1646678289-line-6)">             ┏━┓╺┓ ╺━┓╺━┓╻ ╻┏━╸┏━╸╺━┓┏━┓┏━┓        ╭─╮┌─╮╭─╮┌─╮╭─╴╭─╴           </text><text class="terminal-1646678289-r2" x="976" y="166.4" textLength="12.2" clip-path="url(#terminal-1646678289-line-6)">
|
||||
</text><text class="terminal-1646678289-r3" x="0" y="190.8" textLength="976" clip-path="url(#terminal-1646678289-line-7)">             ┃ ┃ ┃ ┏━┛ ━┫┗━┫┗━┓┣━┓  ┃┣━┫┗━┫╺╋╸╺━╸  ├─┤├─┤│  │ │├─ ├─            </text><text class="terminal-1646678289-r2" x="976" y="190.8" textLength="12.2" clip-path="url(#terminal-1646678289-line-7)">
|
||||
</text><text class="terminal-1646678289-r3" x="0" y="215.2" textLength="976" clip-path="url(#terminal-1646678289-line-8)">             ┗━┛╺┻╸┗━╸╺━┛  ╹╺━┛┗━┛  ╹┗━┛╺━┛      •,╵ ╵└─╯╰─╯└─╯╰─╴╵             </text><text class="terminal-1646678289-r2" x="976" y="215.2" textLength="12.2" clip-path="url(#terminal-1646678289-line-8)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="239.6" textLength="976" clip-path="url(#terminal-1646678289-line-9)">                                                              ╶─╮   ╶╮ ╭─╮ ^ ╷ ╷</text><text class="terminal-1646678289-r2" x="976" y="239.6" textLength="12.2" clip-path="url(#terminal-1646678289-line-9)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="264" textLength="976" clip-path="url(#terminal-1646678289-line-10)">                                                               ─┤ ×  │ │ │   ╰─┤</text><text class="terminal-1646678289-r2" x="976" y="264" textLength="12.2" clip-path="url(#terminal-1646678289-line-10)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="288.4" textLength="976" clip-path="url(#terminal-1646678289-line-11)">                                                              ╶─╯   ╶┴╴╰─╯     ╵</text><text class="terminal-1646678289-r2" x="976" y="288.4" textLength="12.2" clip-path="url(#terminal-1646678289-line-11)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="312.8" textLength="976" clip-path="url(#terminal-1646678289-line-12)">                                                              ╶─╮   ╶╮ ╭─╮ ^ ╷ ╷</text><text class="terminal-1646678289-r2" x="976" y="312.8" textLength="12.2" clip-path="url(#terminal-1646678289-line-12)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="337.2" textLength="976" clip-path="url(#terminal-1646678289-line-13)">                                                               ─┤ ×  │ │ │   ╰─┤</text><text class="terminal-1646678289-r2" x="976" y="337.2" textLength="12.2" clip-path="url(#terminal-1646678289-line-13)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="361.6" textLength="976" clip-path="url(#terminal-1646678289-line-14)">                                                              ╶─╯   ╶┴╴╰─╯     ╵</text><text class="terminal-1646678289-r2" x="976" y="361.6" textLength="12.2" clip-path="url(#terminal-1646678289-line-14)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="386" textLength="976" clip-path="url(#terminal-1646678289-line-15)">╭╴ ╭╫╮╶╮ ╶─╮╶─╮ ╷ ╷╭─╴ ╶╮                                                       </text><text class="terminal-1646678289-r2" x="976" y="386" textLength="12.2" clip-path="url(#terminal-1646678289-line-15)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="410.4" textLength="976" clip-path="url(#terminal-1646678289-line-16)">│  ╰╫╮ │ ┌─┘ ─┤ ╰─┤╰─╮  │                                                       </text><text class="terminal-1646678289-r2" x="976" y="410.4" textLength="12.2" clip-path="url(#terminal-1646678289-line-16)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="434.8" textLength="976" clip-path="url(#terminal-1646678289-line-17)">╰╴ ╰╫╯╶┴╴╰─╴╶─╯•  ╵╶─╯ ╶╯                                                       </text><text class="terminal-1646678289-r2" x="976" y="434.8" textLength="12.2" clip-path="url(#terminal-1646678289-line-17)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="459.2" textLength="976" clip-path="url(#terminal-1646678289-line-18)">╭─╮╶╮ ╶─╮╶─╮ ╷ ╷╭─╴                                                             </text><text class="terminal-1646678289-r2" x="976" y="459.2" textLength="12.2" clip-path="url(#terminal-1646678289-line-18)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="483.6" textLength="976" clip-path="url(#terminal-1646678289-line-19)">╪═  │ ┌─┘ ─┤ ╰─┤╰─╮                                                             </text><text class="terminal-1646678289-r2" x="976" y="483.6" textLength="12.2" clip-path="url(#terminal-1646678289-line-19)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="508" textLength="976" clip-path="url(#terminal-1646678289-line-20)">┴─╴╶┴╴╰─╴╶─╯•  ╵╶─╯                                                             </text><text class="terminal-1646678289-r2" x="976" y="508" textLength="12.2" clip-path="url(#terminal-1646678289-line-20)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="532.4" textLength="976" clip-path="url(#terminal-1646678289-line-21)">╭─╮╶╮ ╶─╮╶─╮ ╷ ╷╭─╴                                                             </text><text class="terminal-1646678289-r2" x="976" y="532.4" textLength="12.2" clip-path="url(#terminal-1646678289-line-21)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="556.8" textLength="976" clip-path="url(#terminal-1646678289-line-22)">╪═  │ ┌─┘ ─┤ ╰─┤╰─╮                                                             </text><text class="terminal-1646678289-r2" x="976" y="556.8" textLength="12.2" clip-path="url(#terminal-1646678289-line-22)">
|
||||
</text><text class="terminal-1646678289-r1" x="0" y="581.2" textLength="976" clip-path="url(#terminal-1646678289-line-23)">╰─╯╶┴╴╰─╴╶─╯•  ╵╶─╯                                                             </text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |