Update to Rust programming language.
This commit is contained in:
parent
943efbfbdb
commit
f88248643b
201 changed files with 12954 additions and 1690 deletions
6
src-tauri/commands/browser/ahk/Run browser.ahk
Normal file
6
src-tauri/commands/browser/ahk/Run browser.ahk
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
|
||||
; #Warn ; Enable warnings to assist with detecting common errors.
|
||||
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
|
||||
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
|
||||
|
||||
Run C:/Program Files (x86)/Google/Chrome/Application/chrome.exe
|
||||
BIN
src-tauri/commands/browser/ahk/Run browser.exe
Normal file
BIN
src-tauri/commands/browser/ahk/Run browser.exe
Normal file
Binary file not shown.
6
src-tauri/commands/browser/ahk/Run google.ahk
Normal file
6
src-tauri/commands/browser/ahk/Run google.ahk
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
|
||||
; #Warn ; Enable warnings to assist with detecting common errors.
|
||||
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
|
||||
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
|
||||
|
||||
Run C:/Program Files (x86)/Google/Chrome/Application/chrome.exe "https://google.com"
|
||||
BIN
src-tauri/commands/browser/ahk/Run google.exe
Normal file
BIN
src-tauri/commands/browser/ahk/Run google.exe
Normal file
Binary file not shown.
6
src-tauri/commands/browser/ahk/Run youtube.ahk
Normal file
6
src-tauri/commands/browser/ahk/Run youtube.ahk
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
|
||||
; #Warn ; Enable warnings to assist with detecting common errors.
|
||||
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
|
||||
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
|
||||
|
||||
Run C:/Program Files (x86)/Google/Chrome/Application/chrome.exe "https://youtube.com"
|
||||
BIN
src-tauri/commands/browser/ahk/Run youtube.exe
Normal file
BIN
src-tauri/commands/browser/ahk/Run youtube.exe
Normal file
Binary file not shown.
46
src-tauri/commands/browser/command.yaml
Normal file
46
src-tauri/commands/browser/command.yaml
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
list:
|
||||
- command:
|
||||
action: ahk
|
||||
exe_path: ahk/Run browser.exe
|
||||
exe_args:
|
||||
voice:
|
||||
sounds:
|
||||
- ok1
|
||||
- ok2
|
||||
- ok3
|
||||
phrases:
|
||||
- открой браузер
|
||||
- запусти браузер
|
||||
- открой гугл хром
|
||||
- гугл хром
|
||||
|
||||
- command:
|
||||
action: ahk
|
||||
exe_path: ahk/Run google.exe
|
||||
exe_args:
|
||||
voice:
|
||||
sounds:
|
||||
- ok1
|
||||
- ok2
|
||||
- ok3
|
||||
- ok4
|
||||
phrases:
|
||||
- открой гугл
|
||||
- гугл
|
||||
- запусти гугл
|
||||
- перейди в гугл
|
||||
|
||||
- command:
|
||||
action: ahk
|
||||
exe_path: ahk/Run youtube.exe
|
||||
exe_args:
|
||||
voice:
|
||||
sounds:
|
||||
- ok1
|
||||
- ok2
|
||||
- ok3
|
||||
- ok4
|
||||
phrases:
|
||||
- открой ютуб
|
||||
- ютуб
|
||||
- запусти ютуб
|
||||
53
src-tauri/commands/humor/command.yaml
Normal file
53
src-tauri/commands/humor/command.yaml
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
list:
|
||||
- command:
|
||||
action: voice
|
||||
exe_path:
|
||||
exe_args:
|
||||
voice:
|
||||
sounds:
|
||||
- joke1
|
||||
- joke2
|
||||
- joke3
|
||||
- joke4
|
||||
- joke5
|
||||
phrases:
|
||||
- расскажи анекдот
|
||||
- рассмеши
|
||||
- пошути
|
||||
- шутка
|
||||
- расскажи шутку
|
||||
- развесели меня
|
||||
- что нибудь смешное
|
||||
- подними мне настроение
|
||||
- мне скучно
|
||||
- хочу шутку
|
||||
- хочу анекдот
|
||||
- пошути
|
||||
- расскажи что нибудь смешное
|
||||
- расскажи смешное что нибудь
|
||||
- хочу посмеяться
|
||||
|
||||
- command:
|
||||
action: voice
|
||||
exe_path:
|
||||
exe_args:
|
||||
voice:
|
||||
sounds:
|
||||
- thanks
|
||||
phrases:
|
||||
- спасибо
|
||||
- молодец
|
||||
- респект
|
||||
- ты супер
|
||||
- отличная работа
|
||||
- ты крут
|
||||
- ты большой молодец
|
||||
- ты реально крут
|
||||
- ты афигенный
|
||||
- классная шутка
|
||||
- очень смешно
|
||||
- ты меня рассмешил
|
||||
- веселая шутка
|
||||
- смешной анекдот
|
||||
- это было весело
|
||||
- интересная шутка
|
||||
13
src-tauri/commands/stupid/command.yaml
Normal file
13
src-tauri/commands/stupid/command.yaml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
list:
|
||||
- command:
|
||||
action: voice
|
||||
exe_path:
|
||||
exe_args:
|
||||
voice:
|
||||
sounds:
|
||||
- stupid
|
||||
phrases:
|
||||
- ты дурак
|
||||
- ты дебил
|
||||
- ты глупый
|
||||
- ты тупой
|
||||
19
src-tauri/commands/terminate/command.yaml
Normal file
19
src-tauri/commands/terminate/command.yaml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
list:
|
||||
- command:
|
||||
action: terminate
|
||||
exe_path:
|
||||
exe_args:
|
||||
voice:
|
||||
sounds:
|
||||
- off
|
||||
phrases:
|
||||
- выключись
|
||||
- вырубись
|
||||
- завершить работу
|
||||
- закройся
|
||||
- отключись
|
||||
- заверши свою работу
|
||||
- на сегодня хватит
|
||||
- выгрузи себя из памяти
|
||||
- ты мне надоел
|
||||
- пора спать
|
||||
20
src-tauri/commands/thanks/command.yaml
Normal file
20
src-tauri/commands/thanks/command.yaml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
list:
|
||||
- command:
|
||||
action: voice
|
||||
exe_path:
|
||||
exe_args:
|
||||
voice:
|
||||
sounds:
|
||||
- thanks
|
||||
phrases:
|
||||
- спасибо
|
||||
- молодец
|
||||
- респект
|
||||
- ты супер
|
||||
- отличная работа
|
||||
- ты крут
|
||||
- ты большой молодец
|
||||
- ты реально крут
|
||||
- ты афигенный
|
||||
- ты отец
|
||||
- вечно ты молодец
|
||||
6
src-tauri/commands/volume/ahk/Mute volume.ahk
Normal file
6
src-tauri/commands/volume/ahk/Mute volume.ahk
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
|
||||
; #Warn ; Enable warnings to assist with detecting common errors.
|
||||
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
|
||||
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
|
||||
|
||||
Send {Volume_Mute} ; Mute/unmute the master volume.
|
||||
BIN
src-tauri/commands/volume/ahk/Mute volume.exe
Normal file
BIN
src-tauri/commands/volume/ahk/Mute volume.exe
Normal file
Binary file not shown.
31
src-tauri/commands/volume/command.yaml
Normal file
31
src-tauri/commands/volume/command.yaml
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
list:
|
||||
- command:
|
||||
action: ahk
|
||||
exe_path: ahk/Mute volume.exe
|
||||
exe_args:
|
||||
voice:
|
||||
sounds:
|
||||
- ok1
|
||||
- ok2
|
||||
- ok3
|
||||
- ok4
|
||||
phrases:
|
||||
- выключи звук
|
||||
- беззвучный режим
|
||||
- режим без звука
|
||||
- отключи звук
|
||||
|
||||
- command:
|
||||
action: ahk
|
||||
exe_path: ahk/Mute volume.exe
|
||||
exe_args:
|
||||
voice:
|
||||
sounds:
|
||||
- ok1
|
||||
- ok2
|
||||
- ok3
|
||||
- ok4
|
||||
phrases:
|
||||
- включи звук
|
||||
- режим со звуком
|
||||
- верни звук
|
||||
Loading…
Add table
Add a link
Reference in a new issue