From 3e73927e22d76e0149615df373e08d08e3aa0202 Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Tue, 16 Jan 2024 19:15:42 -0700 Subject: [PATCH] add example config file --- traygent.json.example | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 traygent.json.example diff --git a/traygent.json.example b/traygent.json.example new file mode 100644 index 0000000..5b9343c --- /dev/null +++ b/traygent.json.example @@ -0,0 +1,30 @@ +[ + { + "command_path": "/bin/ssh-askpass-fullscreen", + "event": "sign", + "exit_code": 0, + "msg_format": "Allow access to key %q?" + }, + { + "command_args": [ + "--title", + "traygent", + "--passivepopup", + "SSH Key Added", + "5" + ], + "command_path": "/bin/kdialog", + "event": "added" + }, + { + "command_args": [ + "--title", + "traygent", + "--passivepopup", + "SSH Key Removed", + "5" + ], + "command_path": "/bin/kdialog", + "event": "removed" + } +]