opencode-mask-j0k3r-dev-rgl 2.0.10 → 2.0.12

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.
Files changed (2) hide show
  1. package/ascii-frames.ts +57 -31
  2. package/package.json +50 -50
package/ascii-frames.ts CHANGED
@@ -8,50 +8,76 @@ export const zoneColors = {
8
8
  purple: "#9d4edd", // accent
9
9
  } as const;
10
10
 
11
- // ─── Home screen logo (mini Arch Linux) ──────────────────────────────────────
11
+ // ─── Home screen logo (compact Arch Linux with small "sombrerito") ───────────
12
12
  //
13
- // Mini Arch logo with two-tone coloring:
13
+ // Compact Arch logo with two-tone coloring:
14
14
  // hotPink = main body
15
15
  // white = middle band
16
16
  //
17
17
  export const archLogoHome: string[] = [
18
- " /\\ ",
19
- " / \\ ",
20
- " / /\ \\ ",
21
- " / / \ \\ ",
22
- " /_/ /\\ \_\\ ",
23
- " / \\ ",
24
- " /____\\ ",
18
+ " -` ",
19
+ " .o+` ",
20
+ " `ooo/ ",
21
+ " `+oooo: ",
22
+ " `+oooooo: ",
23
+ " -+oooooo+: ",
24
+ " `/:-:++oooo+: ",
25
+ " `/++++/+++++++: ",
26
+ " `/+++++++++++++++: ",
27
+ " `/+++ooooooooooooo/` ",
28
+ " ./ooosssso++osssssso+` ",
29
+ " .oossssso-````/ossssss+` ",
30
+ " -osssssso. :ssssssso. ",
31
+ " :osssssss/ osssso+++. ",
32
+ " /ossssssss/ +ssssooo/- ",
33
+ " `/ossssso+/:- -:/+osssso+- ",
34
+ " `+sso+:-` `.-/+oso: ",
35
+ " `++:. `-+/ ",
36
+ " .` `/ ",
25
37
  ];
26
38
 
27
39
  // Line-to-zone mapping: "hotPink" or "white"
28
40
  export const homeLogoZones: ("hotPink" | "white")[] = [
29
- "hotPink", // /\
30
- "hotPink", // / \
31
- "hotPink", // / /\ \
32
- "white", // / / \ \
33
- "white", // /_/ /\ \_\
34
- "hotPink", // / \
35
- "hotPink", // /____\
41
+ "hotPink", // line 0: -`
42
+ "hotPink", // line 1: .o+`
43
+ "hotPink", // line 2: `ooo/
44
+ "hotPink", // line 3: `+oooo:
45
+ "hotPink", // line 4: `+oooooo:
46
+ "hotPink", // line 5: -+oooooo+:
47
+ "hotPink", // line 6: `/:-:++oooo+:
48
+ "hotPink", // line 7: `/++++/+++++++:
49
+ "hotPink", // line 8: `/+++++++++++++++:
50
+ "white", // line 9: `/+++ooooooooooooo/`
51
+ "white", // line 10: ./ooosssso++osssssso+`
52
+ "white", // line 11: .oossssso-````/ossssss+`
53
+ "hotPink", // line 12: -osssssso. :ssssssso.
54
+ "hotPink", // line 13: :osssssss/ osssso+++.
55
+ "hotPink", // line 14: /ossssssss/ +ssssooo/-
56
+ "hotPink", // line 15: `/ossssso+/:- -:/+osssso+-
57
+ "hotPink", // line 16: `+sso+:-` `.-/+oso:
58
+ "hotPink", // line 17: `++:. `-+/
59
+ "hotPink", // line 18: .` `/
36
60
  ];
37
61
 
38
- // ─── Sidebar logo (same mini logo) ───────────────────────────────────────────
62
+ // ─── Sidebar logo (mini Arch) ────────────────────────────────────────────────
39
63
  export const archLogoSidebar: string[] = [
40
- " /\\ ",
41
- " / \\ ",
42
- " / /\ \\ ",
43
- " / / \ \\ ",
44
- " /_/ /\\ \_\\ ",
45
- " / \\ ",
46
- " /____\\ ",
64
+ ' /\\\\ ',
65
+ ' / \\\\ ',
66
+ ' / \\\\ ',
67
+ ' / \\\\ ',
68
+ ' / ,, \\\\ ',
69
+ ' / | | \\\\ ',
70
+ ' / /-\"\"-\\\\ \\\\ ',
71
+ '/___/ \\\\___\\\\',
47
72
  ];
48
73
 
49
74
  export const sidebarLogoZones: ("hotPink" | "white")[] = [
50
- "hotPink", // /\
51
- "hotPink", // / \
52
- "hotPink", // / /\ \
53
- "white", // / / \ \
54
- "white", // /_/ /\ \_\
55
- "hotPink", // / \
56
- "hotPink", // /____\
75
+ "hotPink",
76
+ "hotPink",
77
+ "hotPink",
78
+ "hotPink",
79
+ "white",
80
+ "white",
81
+ "white",
82
+ "hotPink",
57
83
  ];
package/package.json CHANGED
@@ -1,52 +1,52 @@
1
1
  {
2
- "$schema": "https://json.schemastore.org/package.json",
3
- "name": "opencode-mask-j0k3r-dev-rgl",
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
- "type": "module",
7
- "exports": {
8
- "./tui": {
9
- "import": "./tui.tsx",
10
- "config": {
11
- "enabled": true,
12
- "theme": "j0k3r-dev-rgl",
13
- "set_theme": true,
14
- "show_detected": true,
15
- "show_os": true,
16
- "show_providers": true,
17
- "show_sidebar": true
18
- }
19
- }
20
- },
21
- "files": [
22
- "tui.tsx",
23
- "config.ts",
24
- "detection.ts",
25
- "ascii-frames.ts",
26
- "components.tsx",
27
- "themes/j0k3r-dev-rgl.json"
28
- ],
29
- "engines": {
30
- "opencode": ">=1.3.13"
31
- },
32
- "peerDependencies": {
33
- "@opencode-ai/plugin": "*",
34
- "@opentui/core": "*",
35
- "@opentui/solid": "*",
36
- "solid-js": "*"
37
- },
38
- "keywords": [
39
- "opencode",
40
- "plugin",
41
- "theme",
42
- "arch-linux",
43
- "tui",
44
- "ascii"
45
- ],
46
- "author": "j0k3r",
47
- "license": "ISC",
48
- "repository": {
49
- "type": "git",
50
- "url": "git+https://github.com/j0k3r/opencode-mask.git"
51
- }
2
+ "$schema": "https://json.schemastore.org/package.json",
3
+ "name": "opencode-mask-j0k3r-dev-rgl",
4
+ "version": "2.0.12",
5
+ "description": "Arch Linux TUI mask for OpenCode — hot pink theme with prominent ASCII logo and j0k3r-dev-rgl@latest legend",
6
+ "type": "module",
7
+ "exports": {
8
+ "./tui": {
9
+ "import": "./tui.tsx",
10
+ "config": {
11
+ "enabled": true,
12
+ "theme": "j0k3r-dev-rgl",
13
+ "set_theme": true,
14
+ "show_detected": true,
15
+ "show_os": true,
16
+ "show_providers": true,
17
+ "show_sidebar": true
18
+ }
19
+ }
20
+ },
21
+ "files": [
22
+ "tui.tsx",
23
+ "config.ts",
24
+ "detection.ts",
25
+ "ascii-frames.ts",
26
+ "components.tsx",
27
+ "themes/j0k3r-dev-rgl.json"
28
+ ],
29
+ "engines": {
30
+ "opencode": ">=1.3.13"
31
+ },
32
+ "peerDependencies": {
33
+ "@opencode-ai/plugin": "*",
34
+ "@opentui/core": "*",
35
+ "@opentui/solid": "*",
36
+ "solid-js": "*"
37
+ },
38
+ "keywords": [
39
+ "opencode",
40
+ "plugin",
41
+ "theme",
42
+ "arch-linux",
43
+ "tui",
44
+ "ascii"
45
+ ],
46
+ "author": "j0k3r",
47
+ "license": "ISC",
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/j0k3r/opencode-mask.git"
51
+ }
52
52
  }