Skip to content

Commit 57d338b

Browse files
Create README.md
1 parent c2e8d49 commit 57d338b

File tree

1 file changed

+70
-0
lines changed

1 file changed

+70
-0
lines changed

README.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
```bash
2+
https://repo.auraos.org/
3+
4+
├── index.json
5+
├── hello-world-1.0.0.aura
6+
├── browser-2.3.1.aura
7+
└── editor-0.9.4.aura
8+
9+
```bash
10+
11+
mypackage.aura
12+
├── aura.meta # Name, version, deps
13+
├── bin/ # Executables
14+
├── share/ # Icons, configs
15+
└── lib/ # Libraries
16+
```bash
17+
iso/usr/share/aura/desktop/
18+
19+
├── session.sh # Main GUI session script
20+
├── orb.sh # Aura Orb menu launcher
21+
├── dock.sh # Bottom dock
22+
├── widgets/ # Clock, system monitor, etc.
23+
└── themes/ # Desktop themes + icons
24+
```bash
25+
aura-minios/
26+
27+
├── build.sh # Build script for ISO
28+
├── iso/ # ISO filesystem tree
29+
│ ├── boot/
30+
│ │ ├── grub/ # Bootloader configs
31+
│ │ │ └── grub.cfg
32+
│ │ └── vmlinuz # Kernel (placeholder)
33+
│ │
34+
│ ├── initrd.img # Init RAM disk
35+
│ ├── etc/
36+
│ │ ├── inittab
37+
│ │ └── aura.conf # Aura configs
38+
│ │
39+
│ ├── sbin/
40+
│ │ └── init # Init system (launches Aura)
41+
│ │
42+
│ ├── usr/
43+
│ │ ├── bin/
44+
│ │ │ ├── aura-gui # GUI launcher
45+
│ │ │ ├── aura-term # Terminal launcher
46+
│ │ │ ├── apm # Aura package manager
47+
│ │ │ └── welcome # First boot welcome script
48+
│ │ └── share/
49+
│ │ └── aura/
50+
│ │ ├── desktop/ # UI assets
51+
│ │ └── icons/
52+
│ │
53+
│ └── home/
54+
│ └── aura-user/
55+
│ └── Desktop/
56+
│ └── readme.txt
57+
58+
└── scripts/
59+
├── mkinit.sh # Create initrd
60+
├── mkgrub.sh # Setup GRUB
61+
└── mkiso.sh # Build ISO with xorriso
62+
63+
64+
```
65+
———
66+
<img width="1024" height="1536" alt="image" src="https://github.com/user-attachments/assets/44d26d3a-cb08-402a-863f-dcb2249d6f12" />
67+
68+
<img width="1536" height="1024" alt="image" src="https://github.com/user-attachments/assets/9bd602cb-01f8-44dc-abd4-a2bdeed0159b" />
69+
70+
<img width="1536" height="1024" alt="image" src="https://github.com/user-attachments/assets/1915b004-7ebe-4e43-a2aa-d7a637189763" />

0 commit comments

Comments
 (0)