Skip to content

Instantly share code, notes, and snippets.

View Kimononono's full-sized avatar

Hunter Kimononono

View GitHub Profile
@Kimononono
Kimononono / watcher.py
Created February 23, 2025 01:29
Kitty Terminal Command Logger
from typing import Any
import json
from kitty.boss import Boss
from kitty.window import Window
class Output:
def __init__(self):
self.prompt = []
self.output = []
@Kimononono
Kimononono / DopePydanticExample-Main.py
Created February 18, 2025 05:01
Pydantic Dope Stuff
from DopePydanticExample import castHyprlandEvents, EventBase # Import your models module
from pprint import pprint
if __name__ == "__main__":
event1 = castHyprlandEvents("workspace", "Main")
print(event1) # WorkspaceEvent(workspace_name='Main')
event2 = castHyprlandEvents("workspacev2", "1,Main")
print(event2) # WorkspaceV2Event(workspace_id=1, workspace_name='Main')
@Kimononono
Kimononono / binds.conf
Created December 7, 2024 05:32
Favorite Hyprland Script
bind=$MOD1,right,exec,/home/hunte/.config/hypr/scripts/moveCustom.sh "r"
bind=$MOD1,left,exec,/home/hunte/.config/hypr/scripts/moveCustom.sh "l"