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.
@@ -1,8 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bdh-linux
3
- Version: 4.2.1
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
- os.system("sudo pacman -Rns $(pacman -Qtdq) --noconfirm || true")
55
- os.system("sudo pacman -Sc --nocofirm")
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.1
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.1"
7
+ version = "v4.2.4"
8
8
  description = "bdh-linux — Backend Developer OS setup tool for Arch/Manjaro"
9
9
  readme = "README.md"
10
- authors = [
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