mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 10:52:08 +02:00
9 lines
210 B
Python
9 lines
210 B
Python
#!/usr/bin/env python3
|
|
|
|
import json, subprocess
|
|
|
|
if __name__ == "__main__":
|
|
data: dict[str, str] = json.loads(subprocess.check_output(['fastfetch', '--help-raw']))
|
|
for item in data:
|
|
print(item)
|