bdh-linux 4.2.11__tar.gz → 5__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bdh-linux
3
- Version: 4.2.11
3
+ Version: 5
4
4
  Summary: bdh-linux — Backend Developer OS setup tool for Arch/Manjaro
5
5
  License: MIT
6
6
  Project-URL: Homepage, https://github.com/BackendDeveloperHub/bdh-linux
@@ -248,11 +248,12 @@ def docker():
248
248
  print("[green]✅ Docker setup done![/green]")
249
249
  @app.command()
250
250
  def keyboard_backlight():
251
- run("echo 3 | sudo tee /sys/class/leds/dell::kbd_backlight/brightness")
252
-
253
-
254
-
255
-
251
+ your_labtop =str(input("dell,asus,acer,msi,lenovo,hp"))
252
+ level = int(input("brightness leval(0-3):"))
253
+ if 0 <= level <=3 :
254
+ run(f"echo {level} | sudo tee /sys/class/leds/{ your_labtop}::kbd_backlight/brightness")
255
+ else:
256
+ print ("invalid input ")
256
257
 
257
258
 
258
259
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bdh-linux
3
- Version: 4.2.11
3
+ Version: 5
4
4
  Summary: bdh-linux — Backend Developer OS setup tool for Arch/Manjaro
5
5
  License: MIT
6
6
  Project-URL: Homepage, https://github.com/BackendDeveloperHub/bdh-linux
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "bdh-linux"
7
- version = "v4.2.11"
7
+ version = "v5"
8
8
  description = "bdh-linux — Backend Developer OS setup tool for Arch/Manjaro"
9
9
  readme = "README.md"
10
10
 
File without changes
File without changes
File without changes
File without changes