opencode-mask-j0k3r-dev-rgl 2.0.8 → 2.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ascii-frames.ts +38 -94
- package/components.tsx +1 -1
- package/package.json +2 -2
package/ascii-frames.ts
CHANGED
|
@@ -8,106 +8,50 @@ export const zoneColors = {
|
|
|
8
8
|
purple: "#9d4edd", // accent
|
|
9
9
|
} as const;
|
|
10
10
|
|
|
11
|
-
// ─── Home screen logo (
|
|
11
|
+
// ─── Home screen logo (mini Arch Linux) ──────────────────────────────────────
|
|
12
12
|
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
13
|
+
// Mini Arch logo with two-tone coloring:
|
|
14
|
+
// hotPink = main body
|
|
15
|
+
// white = middle band
|
|
16
16
|
//
|
|
17
17
|
export const archLogoHome: string[] = [
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
" ################ ",
|
|
26
|
-
" ############# ################ ############# ",
|
|
27
|
-
" ################## ################################### ",
|
|
28
|
-
" ##########################################################",
|
|
29
|
-
" ############################################################",
|
|
30
|
-
" ##############################################################",
|
|
31
|
-
" #### ################################### #####",
|
|
32
|
-
" ### ############################## ###",
|
|
33
|
-
" ####### ############################ #######",
|
|
34
|
-
" ####### ##### #### ##### #######",
|
|
35
|
-
" ####### #### #### #######",
|
|
36
|
-
" ### ##### ## # ##### ##",
|
|
37
|
-
" ###### ##### ##### ###### ",
|
|
38
|
-
" ###### ####### ############# ",
|
|
39
|
-
" ##### ## # ##### ",
|
|
40
|
-
" #### #### #### ",
|
|
41
|
-
" ## ##### ### ",
|
|
42
|
-
" ### *# ## ",
|
|
43
|
-
" ## ############ ## ",
|
|
44
|
-
" ### ### ### #### ",
|
|
45
|
-
" ### ######## ### ",
|
|
46
|
-
" #### ## #### ",
|
|
47
|
-
" ########### ",
|
|
18
|
+
" /\\ ",
|
|
19
|
+
" / \\ ",
|
|
20
|
+
" / /\ \\ ",
|
|
21
|
+
" / / \ \\ ",
|
|
22
|
+
" /_/ /\\ \_\\ ",
|
|
23
|
+
" / \\ ",
|
|
24
|
+
" /____\\ ",
|
|
48
25
|
];
|
|
49
26
|
|
|
50
|
-
// Line-to-zone mapping: "
|
|
51
|
-
export const homeLogoZones: ("
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"neonBlue", // line 7: `/++++/+++++++:
|
|
60
|
-
"neonBlue", // line 8: `/+++++++++++++++:
|
|
61
|
-
"white", // line 9: `/+++oooooooooooo/`
|
|
62
|
-
"white", // line 10: ./ooosssso++osssssso+`
|
|
63
|
-
"white", // line 11: .oossssso-````/ossssss+`
|
|
64
|
-
"neonBlue", // line 12: -osssssso. :ssssssso.
|
|
65
|
-
"neonBlue", // line 13: :osssssss/ osssso+++.
|
|
66
|
-
"neonBlue", // line 14: /ossssssss/ +ssssooo/-
|
|
67
|
-
"neonBlue", // line 15: `/ossssso+/:- -:/+osssso+-
|
|
68
|
-
"neonBlue", // line 16: `+sso+:-` `.-/+oso:
|
|
69
|
-
"neonBlue", // line 17: `++:. `-/+/
|
|
70
|
-
"neonBlue", // line 18: .` `/
|
|
27
|
+
// Line-to-zone mapping: "hotPink" or "white"
|
|
28
|
+
export const homeLogoZones: ("hotPink" | "white")[] = [
|
|
29
|
+
"hotPink", // /\
|
|
30
|
+
"hotPink", // / \
|
|
31
|
+
"hotPink", // / /\ \
|
|
32
|
+
"white", // / / \ \
|
|
33
|
+
"white", // /_/ /\ \_\
|
|
34
|
+
"hotPink", // / \
|
|
35
|
+
"hotPink", // /____\
|
|
71
36
|
];
|
|
72
37
|
|
|
73
|
-
// ─── Sidebar logo (
|
|
74
|
-
export const
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
" ################ ",
|
|
83
|
-
" ############# ################ ############# ",
|
|
84
|
-
" ################## ################################### ",
|
|
85
|
-
" ##########################################################",
|
|
86
|
-
" ############################################################",
|
|
87
|
-
" ##############################################################",
|
|
88
|
-
" #### ################################### #####",
|
|
89
|
-
" ### ############################## ###",
|
|
90
|
-
" ####### ############################ #######",
|
|
91
|
-
" ####### ##### #### ##### #######",
|
|
92
|
-
" ####### #### #### #######",
|
|
93
|
-
" ### ##### ## # ##### ##",
|
|
94
|
-
" ###### ##### ##### ###### ",
|
|
95
|
-
" ###### ####### ############# ",
|
|
96
|
-
" ##### ## # ##### ",
|
|
97
|
-
" #### #### #### ",
|
|
98
|
-
" ## ##### ### ",
|
|
99
|
-
" ### *# ## ",
|
|
100
|
-
" ## ############ ## ",
|
|
101
|
-
" ### ### ### #### ",
|
|
102
|
-
" ### ######## ### ",
|
|
103
|
-
" #### ## #### ",
|
|
104
|
-
" ########### ",
|
|
38
|
+
// ─── Sidebar logo (same mini logo) ───────────────────────────────────────────
|
|
39
|
+
export const archLogoSidebar: string[] = [
|
|
40
|
+
" /\\ ",
|
|
41
|
+
" / \\ ",
|
|
42
|
+
" / /\ \\ ",
|
|
43
|
+
" / / \ \\ ",
|
|
44
|
+
" /_/ /\\ \_\\ ",
|
|
45
|
+
" / \\ ",
|
|
46
|
+
" /____\\ ",
|
|
105
47
|
];
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"white",
|
|
112
|
-
"white",
|
|
48
|
+
|
|
49
|
+
export const sidebarLogoZones: ("hotPink" | "white")[] = [
|
|
50
|
+
"hotPink", // /\
|
|
51
|
+
"hotPink", // / \
|
|
52
|
+
"hotPink", // / /\ \
|
|
53
|
+
"white", // / / \ \
|
|
54
|
+
"white", // /_/ /\ \_\
|
|
55
|
+
"hotPink", // / \
|
|
56
|
+
"hotPink", // /____\
|
|
113
57
|
];
|
package/components.tsx
CHANGED
|
@@ -60,7 +60,7 @@ export const SidebarArch = (props: { theme: TuiThemeCurrent; config: Cfg }) => {
|
|
|
60
60
|
{archLogoSidebar.map((line, i) => {
|
|
61
61
|
const zone = sidebarLogoZones[i]
|
|
62
62
|
const color = zoneColors[zone] || props.theme.primary
|
|
63
|
-
return <text fg={color}>{line
|
|
63
|
+
return <text fg={color}>{line}</text>
|
|
64
64
|
})}
|
|
65
65
|
|
|
66
66
|
{/* Compact label */}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "opencode-mask-j0k3r-dev-rgl",
|
|
4
|
-
"version": "2.0.
|
|
5
|
-
"description": "Arch Linux TUI mask for OpenCode —
|
|
4
|
+
"version": "2.0.10",
|
|
5
|
+
"description": "Arch Linux TUI mask for OpenCode — hot pink theme with prominent ASCII logo and j0k3r-dev-rgl@latest legend",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
8
8
|
"./tui": {
|