-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessed_data.json
1 lines (1 loc) · 5.44 KB
/
processed_data.json
1
{"tokenized_voice_commands": [["maximize", "window"], ["minimize", "window"], ["close", "window"], ["switch", "to", "next", "window"], ["switch", "to", "previous", "window"], ["move", "window", "to", "top", "-", "left"], ["move", "window", "to", "top", "-", "right"], ["move", "window", "to", "bottom", "-", "left"], ["move", "window", "to", "bottom", "-", "right"], ["move", "window", "to", "center"], ["res", "##ize", "window", "to", "full", "screen"], ["res", "##ize", "window", "to", "half", "screen"], ["res", "##ize", "window", "to", "quarter", "screen"], ["increase", "window", "op", "##ac", "##ity"], ["decrease", "window", "op", "##ac", "##ity"], ["volume", "up"], ["volume", "down"], ["mute", "volume"], ["play", "/", "pause", "media"], ["next", "track"], ["previous", "track"], ["lock", "computer"], ["sign", "out"], ["shut", "down"], ["restart"], ["sleep"], ["hi", "##ber", "##nate"], ["copy", "selected", "text"], ["cut", "selected", "text"], ["paste", "text"], ["undo", "last", "action"], ["red", "##o", "last", "action"], ["select", "all", "text"], ["des", "##ele", "##ct", "text"], ["find", "in", "document"], ["replace", "in", "document"], ["save", "document"], ["save", "document", "as"]], "encoded_labels": [19, 21, 10, 7, 0, 3, 5, 2, 9, 11, 14, 16, 24, 17, 12, 8, 1, 20, 23, 6, 4, 18, 26, 22, 25, 13, 15, 29, 35, 34, 37, 36, 28, 30, 31, 32, 33, 27], "label_to_command_map": {"19": "^!m:: ; Press Ctrl + Alt + M to maximize the active window\nWinMaximize, A\nreturn", "21": "^!n:: ; Press Ctrl + Alt + N to minimize the active window\nWinMinimize, A\nreturn", "10": "^!c:: ; Press Ctrl + Alt + C to close the active window\nWinClose, A\nreturn", "7": "^!Tab:: ; Press Ctrl + Alt + Tab to switch to the next window\nSend, ^{Tab}\nreturn", "0": "^!+Tab:: ; Press Ctrl + Alt + Shift + Tab to switch to the previous window\nSend, ^+{Tab}\nreturn", "3": "^!Left:: ; Press Ctrl + Alt + Left Arrow to move the active window to the top-left corner\nWinMove, A,, 0, 0\nreturn", "5": "^!Right:: ; Press Ctrl + Alt + Right Arrow to move the active window to the top-right corner\nWinMove, A,, A_ScreenWidth - A_Width, 0\nreturn", "2": "^!Down:: ; Press Ctrl + Alt + Down Arrow to move the active window to the bottom-left corner\nWinMove, A,, 0, A_ScreenHeight - A_Height\nreturn", "9": "^!Up:: ; Press Ctrl + Alt + Up Arrow to move the active window to the bottom-right corner\nWinMove, A,, A_ScreenWidth - A_Width, A_ScreenHeight - A_Height\nreturn", "11": "^!c:: ; Press Ctrl + Alt + C to move the active window to the center of the screen\nWinGetPos, WinX, WinY, WinWidth, WinHeight, A\nWinMove, A,, (A_ScreenWidth - WinWidth) // 2, (A_ScreenHeight - WinHeight) // 2\nreturn", "14": "^!f:: ; Press Ctrl + Alt + F to resize the active window to full screen\nWinGet, currentWindow, ID, A\nWinMaximize, ahk_id %currentWindow%\nreturn", "16": "^!h:: ; Press Ctrl + Alt + H to resize the active window to half of the screen (left side)\nWinGetPos, WinX, WinY, WinWidth, WinHeight, A\nWinMove, A,, 0, 0, A_ScreenWidth//2, A_ScreenHeight\nreturn", "24": "^!q:: ; Press Ctrl + Alt + Q to resize the active window to a quarter of the screen (top-left quadrant)\nWinGetPos, WinX, WinY, WinWidth, WinHeight, A\nWinMove, A,, 0, 0, A_ScreenWidth//2, A_ScreenHeight//2\nreturn", "17": "^!i:: ; Press Ctrl + Alt + I to increase the opacity of the active window\nWinSet, Transparent, 200, A ; Adjust the value (200) to change opacity\nreturn", "12": "^!d:: ; Press Ctrl + Alt + D to decrease the opacity of the active window\nWinSet, Transparent, 100, A ; Adjust the value (100) to change opacity\nreturn", "8": "^!Up:: ; Press Ctrl + Alt + Up Arrow to increase volume\nSend {Volume_Up}\nreturn", "1": "^!Down:: ; Press Ctrl + Alt + Down Arrow to decrease volume\nSend {Volume_Down}\nreturn", "20": "^!m:: ; Press Ctrl + Alt + M to mute/unmute volume\nSend {Volume_Mute}\nreturn", "23": "^!p:: ; Press Ctrl + Alt + P to play/pause media\nSend {Media_Play_Pause}\nreturn", "6": "^!Right:: ; Press Ctrl + Alt + Right Arrow to play the next track\nSend {Media_Next}\nreturn", "4": "^!Left:: ; Press Ctrl + Alt + Left Arrow to play the previous track\nSend {Media_Prev}\nreturn", "18": "^!l:: ; Press Ctrl + Alt + L to lock the computer\nDllCall(\"LockWorkStation\")\nreturn", "26": "^!s:: ; Press Ctrl + Alt + S to sign out of the current user session\nShutdown, 0", "22": "^!o:: ; Press Ctrl + Alt + O to shut down the computer\nShutdown, 1", "25": "^!r:: ; Press Ctrl + Alt + R to restart the computer\nShutdown, 2", "13": "^!e:: ; Press Ctrl + Alt + E to put the computer to sleep\nDllCall(\"PowrProf\\SetSuspendState\", \"int\", 0, \"int\", 0, \"int\", 0)", "15": "^!h:: ; Press Ctrl + Alt + H to hibernate the computer\nDllCall(\"PowrProf\\SetSuspendState\", \"int\", 1, \"int\", 0, \"int\", 0)", "29": "^c:: ; Press Ctrl + C to copy selected text\nSend, ^c\nreturn", "35": "^x:: ; Press Ctrl + X to cut selected text\nSend, ^x\nreturn", "34": "^v:: ; Press Ctrl + V to paste text\nSend, ^v\nreturn", "37": "^z:: ; Press Ctrl + Z to undo\nSend, ^z\nreturn", "36": "^y:: ; Press Ctrl + Y to redo\nSend, ^y\nreturn", "28": "^a:: ; Press Ctrl + A to select all text\nSend, ^a\nreturn", "30": "^d:: ; Press Ctrl + D to deselect text\nSend, ^d\nreturn", "31": "^f:: ; Press Ctrl + F to find in document\nSend, ^f\nreturn", "32": "^h:: ; Press Ctrl + H to replace in document\nSend, ^h\nreturn", "33": "^s:: ; Press Ctrl + S to save document\nSend, ^s\nreturn", "27": "^!s:: ; Press Ctrl + Alt + S to save document as\nSend, ^+s\nreturn"}}