@chahuadev/junk-sweeper-app 2.0.0 → 2.0.2
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/README.md +30 -0
- package/install.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,6 +37,36 @@ junk-sweeper
|
|
|
37
37
|
|
|
38
38
|
---
|
|
39
39
|
|
|
40
|
+
## 🐧 Running on Linux / WSL2 (Ubuntu)
|
|
41
|
+
|
|
42
|
+
First install the required system libraries (one-time setup):
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
sudo apt-get update && sudo apt-get install -y \
|
|
46
|
+
libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 \
|
|
47
|
+
libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 \
|
|
48
|
+
libxrandr2 libgbm1 libasound2
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Then run the AppImage:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
chmod +x "Junk Sweeper.AppImage"
|
|
55
|
+
DISPLAY=:0 WAYLAND_DISPLAY=wayland-0 \
|
|
56
|
+
./"Junk Sweeper.AppImage" \
|
|
57
|
+
--appimage-extract-and-run --no-sandbox --disable-gpu
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
> **WSL2 tip:** Copy to WSL native filesystem first:
|
|
61
|
+
> ```bash
|
|
62
|
+
> cp "/mnt/d/path/to/Junk Sweeper.AppImage" /tmp/JunkSweeper.AppImage
|
|
63
|
+
> chmod +x /tmp/JunkSweeper.AppImage
|
|
64
|
+
> DISPLAY=:0 WAYLAND_DISPLAY=wayland-0 /tmp/JunkSweeper.AppImage \
|
|
65
|
+
> --appimage-extract-and-run --no-sandbox --disable-gpu
|
|
66
|
+
> ```
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
40
70
|
## 🚀 What It Does
|
|
41
71
|
|
|
42
72
|
While standard linters look for syntax errors, **Chahuadev Junk Sweeper** uses deep AST analysis to understand the *context* and *architecture* of your entire project.
|
package/install.js
CHANGED
|
@@ -13,11 +13,11 @@ let downloadUrl = '';
|
|
|
13
13
|
let fileName = '';
|
|
14
14
|
|
|
15
15
|
if (platform === 'win32') {
|
|
16
|
-
downloadUrl = `${R2_BASE}/Junk
|
|
17
|
-
fileName = 'Junk Sweeper
|
|
16
|
+
downloadUrl = `${R2_BASE}/Junk-Sweeper.exe`;
|
|
17
|
+
fileName = 'Junk Sweeper.exe';
|
|
18
18
|
} else if (platform === 'linux') {
|
|
19
|
-
downloadUrl = `${R2_BASE}/Junk
|
|
20
|
-
fileName = 'Junk Sweeper
|
|
19
|
+
downloadUrl = `${R2_BASE}/Junk-Sweeper.AppImage`;
|
|
20
|
+
fileName = 'Junk Sweeper.AppImage';
|
|
21
21
|
} else {
|
|
22
22
|
console.warn(`Chahuadev Junk Sweeper does not support ${platform} ${arch} yet.`);
|
|
23
23
|
process.exit(0);
|
package/package.json
CHANGED