This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bind=$MOD1,right,exec,/home/hunte/.config/hypr/scripts/moveCustom.sh "r" | |
bind=$MOD1,left,exec,/home/hunte/.config/hypr/scripts/moveCustom.sh "l" |