ninwa/config.json
2022-02-15 04:33:19 +01:00

42 lines
No EOL
806 B
JSON

{
"log": {
"level": "debug",
"timestamp": "DD.MM.YYYY HH:mm:ss:SS"
},
"watchers": [
{
"device": "usb-Razer_Razer_Blade_Stealth-if01-event-kbd",
"keys": [
{
"key": "f9",
"type": "keydown",
"command": "notify-send",
"args": [
"F9 DOWN",
"$(date)"
]
},
{
"key": "f8",
"type": "keyup",
"delay": 2000,
"command": "notify-send",
"args": [
"F8 UP",
"$(date)"
]
},
{
"key": "f7",
"type": "keyhold",
"delay": 1000,
"command": "notify-send",
"args": [
"F7 HOLD",
"$(date)"
]
}
]
}
]
}