Add AutoKey configuration
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
2a6d463ddf
commit
f06bb1dff6
11 changed files with 215 additions and 3 deletions
30
system/.config/autokey/data/Scripts/.current_date.json
Normal file
30
system/.config/autokey/data/Scripts/.current_date.json
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"type": "script",
|
||||
"description": "current_date",
|
||||
"store": {},
|
||||
"modes": [
|
||||
1
|
||||
],
|
||||
"usageCount": 12,
|
||||
"prompt": false,
|
||||
"omitTrigger": false,
|
||||
"showInTrayMenu": false,
|
||||
"abbreviation": {
|
||||
"abbreviations": [
|
||||
"#d"
|
||||
],
|
||||
"backspace": true,
|
||||
"ignoreCase": false,
|
||||
"immediate": true,
|
||||
"triggerInside": false,
|
||||
"wordChars": "[\\w]"
|
||||
},
|
||||
"hotkey": {
|
||||
"modifiers": [],
|
||||
"hotKey": null
|
||||
},
|
||||
"filter": {
|
||||
"regex": null,
|
||||
"isRecursive": false
|
||||
}
|
||||
}
|
23
system/.config/autokey/data/Scripts/.folder.json
Normal file
23
system/.config/autokey/data/Scripts/.folder.json
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "folder",
|
||||
"title": "Scripts",
|
||||
"modes": [],
|
||||
"usageCount": 16,
|
||||
"showInTrayMenu": false,
|
||||
"abbreviation": {
|
||||
"abbreviations": [],
|
||||
"backspace": true,
|
||||
"ignoreCase": false,
|
||||
"immediate": false,
|
||||
"triggerInside": false,
|
||||
"wordChars": "[\\w]"
|
||||
},
|
||||
"hotkey": {
|
||||
"modifiers": [],
|
||||
"hotKey": null
|
||||
},
|
||||
"filter": {
|
||||
"regex": null,
|
||||
"isRecursive": false
|
||||
}
|
||||
}
|
3
system/.config/autokey/data/Scripts/current_date.py
Normal file
3
system/.config/autokey/data/Scripts/current_date.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
import datetime
|
||||
current_date = datetime.datetime.now()
|
||||
keyboard.send_keys(current_date.strftime("%Y-%m-%d"))
|
Loading…
Add table
Add a link
Reference in a new issue