feat!: added configs + restructuring

This commit is contained in:
2024-04-06 21:13:16 -05:00
parent 8ff9cb0e98
commit fd2111b692
35 changed files with 1298 additions and 0 deletions

13
config/hypr/scripts/quotes.py Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env python
import requests
res = requests.get('https://zenquotes.io/api/random')
if not res:
exit(1)
json = res.json()
data = json[0]
print(f"{data['q']}\n -- {data['a']}")