bdh-linux 4.2.1__tar.gz → 4.2.4__tar.gz
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.
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/PKG-INFO +1 -2
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/bdh_linux/commands/remove.py +4 -5
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/bdh_linux/commands/setup.py +2 -0
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/bdh_linux.egg-info/PKG-INFO +1 -2
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/pyproject.toml +2 -4
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/bdh_linux/__init__.py +0 -0
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/bdh_linux/commands/install.py +0 -0
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/bdh_linux/main.py +0 -0
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/bdh_linux.egg-info/SOURCES.txt +0 -0
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/bdh_linux.egg-info/dependency_links.txt +0 -0
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/bdh_linux.egg-info/entry_points.txt +0 -0
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/bdh_linux.egg-info/requires.txt +0 -0
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/bdh_linux.egg-info/top_level.txt +0 -0
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/setup.cfg +0 -0
- {bdh_linux-4.2.1 → bdh_linux-4.2.4}/setup.py +0 -0
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bdh-linux
|
|
3
|
-
Version: 4.2.
|
|
3
|
+
Version: 4.2.4
|
|
4
4
|
Summary: bdh-linux — Backend Developer OS setup tool for Arch/Manjaro
|
|
5
|
-
Author-email: Prabakaran <prabakaran20020430@gmail.com>
|
|
6
5
|
License: MIT
|
|
7
6
|
Project-URL: Homepage, https://github.com/BackendDeveloperHub/bdh-linux
|
|
8
7
|
Project-URL: Repository, https://github.com/BackendDeveloperHub/bdh-linux
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import typer
|
|
2
2
|
import subprocess
|
|
3
3
|
from rich import print
|
|
4
|
-
import os
|
|
5
4
|
|
|
6
5
|
app = typer.Typer(help="Remove bloatware from system")
|
|
7
6
|
|
|
@@ -50,7 +49,7 @@ def media():
|
|
|
50
49
|
|
|
51
50
|
@app.command()
|
|
52
51
|
def cleanup():
|
|
53
|
-
""" remove cache and orphaned packages..."
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
print("✅ System Cleaned successfully!")
|
|
52
|
+
""" remove cache and orphaned packages..."""
|
|
53
|
+
run("sudo pacman -Rns $(pacman -Qtdq) --noconfirm || true")
|
|
54
|
+
run(["sudo pacman -Sc --noconfirm")
|
|
55
|
+
print("[green]✅ System Cleaned successfully![/green]")
|
|
@@ -68,6 +68,7 @@ def terminal():
|
|
|
68
68
|
print("[green]✅ Terminal setup done![/green]")
|
|
69
69
|
print("[green]💡 Run 'p10k configure' to customize prompt![/green]")
|
|
70
70
|
print("[green]⚡ Restart terminal to apply![/green]")
|
|
71
|
+
reset
|
|
71
72
|
|
|
72
73
|
@app.command()
|
|
73
74
|
def packages():
|
|
@@ -103,3 +104,4 @@ def docker():
|
|
|
103
104
|
run("sudo usermod -aG docker $USER")
|
|
104
105
|
print("")
|
|
105
106
|
print("[green]✅ Docker setup done![/green]")
|
|
107
|
+
reset
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bdh-linux
|
|
3
|
-
Version: 4.2.
|
|
3
|
+
Version: 4.2.4
|
|
4
4
|
Summary: bdh-linux — Backend Developer OS setup tool for Arch/Manjaro
|
|
5
|
-
Author-email: Prabakaran <prabakaran20020430@gmail.com>
|
|
6
5
|
License: MIT
|
|
7
6
|
Project-URL: Homepage, https://github.com/BackendDeveloperHub/bdh-linux
|
|
8
7
|
Project-URL: Repository, https://github.com/BackendDeveloperHub/bdh-linux
|
|
@@ -4,12 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "bdh-linux"
|
|
7
|
-
version = "v4.2.
|
|
7
|
+
version = "v4.2.4"
|
|
8
8
|
description = "bdh-linux — Backend Developer OS setup tool for Arch/Manjaro"
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
|
|
11
|
-
{ name = "Prabakaran", email = "prabakaran20020430@gmail.com" }
|
|
12
|
-
]
|
|
10
|
+
|
|
13
11
|
license = {text = "MIT"}
|
|
14
12
|
|
|
15
13
|
keywords = ["linux", "backend", "developer", "fastapi", "arch", "manjaro"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|