Initial backup

This commit is contained in:
2020-04-27 15:28:35 +02:00
parent 9b8c235753
commit be88ded986
34 changed files with 2161 additions and 0 deletions

7
.xmonad/scripts/getdGPULoad.py Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/python3
from pynvml import *
nvmlInit()
handle = nvmlDeviceGetHandleByIndex(0)
print(str(nvmlDeviceGetUtilizationRates(handle).gpu))