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.
- {bdh_linux-4.2.11 → bdh_linux-5}/PKG-INFO +1 -1
- {bdh_linux-4.2.11 → bdh_linux-5}/bdh_linux/commands/setup.py +6 -5
- {bdh_linux-4.2.11 → bdh_linux-5}/bdh_linux.egg-info/PKG-INFO +1 -1
- {bdh_linux-4.2.11 → bdh_linux-5}/pyproject.toml +1 -1
- {bdh_linux-4.2.11 → bdh_linux-5}/bdh_linux/__init__.py +0 -0
- {bdh_linux-4.2.11 → bdh_linux-5}/bdh_linux/commands/install.py +0 -0
- {bdh_linux-4.2.11 → bdh_linux-5}/bdh_linux/commands/remove.py +0 -0
- {bdh_linux-4.2.11 → bdh_linux-5}/bdh_linux/main.py +0 -0
- {bdh_linux-4.2.11 → bdh_linux-5}/bdh_linux.egg-info/SOURCES.txt +0 -0
- {bdh_linux-4.2.11 → bdh_linux-5}/bdh_linux.egg-info/dependency_links.txt +0 -0
- {bdh_linux-4.2.11 → bdh_linux-5}/bdh_linux.egg-info/entry_points.txt +0 -0
- {bdh_linux-4.2.11 → bdh_linux-5}/bdh_linux.egg-info/requires.txt +0 -0
- {bdh_linux-4.2.11 → bdh_linux-5}/bdh_linux.egg-info/top_level.txt +0 -0
- {bdh_linux-4.2.11 → bdh_linux-5}/setup.cfg +0 -0
- {bdh_linux-4.2.11 → bdh_linux-5}/setup.py +0 -0
|
@@ -248,11 +248,12 @@ def docker():
|
|
|
248
248
|
print("[green]✅ Docker setup done![/green]")
|
|
249
249
|
@app.command()
|
|
250
250
|
def keyboard_backlight():
|
|
251
|
-
|
|
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
|
|
|
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
|
|
File without changes
|