diff --git a/system/.config/autokey/autokey.json b/system/.config/autokey/autokey.json index bf7beeb..fc63b2a 100644 --- a/system/.config/autokey/autokey.json +++ b/system/.config/autokey/autokey.json @@ -25,6 +25,7 @@ "notificationIcon": "autokey-status", "workAroundApps": ".*VirtualBox.*|krdc.Krdc", "triggerItemByInitial": false, + "disabledModifiers": [], "scriptGlobals": {} }, "folders": [], diff --git a/system/.config/autokey/autokey.json~ b/system/.config/autokey/autokey.json~ index 3e2458b..fc63b2a 100644 --- a/system/.config/autokey/autokey.json~ +++ b/system/.config/autokey/autokey.json~ @@ -1,5 +1,5 @@ { - "version": "0.95.7", + "version": "0.95.9", "userCodeDir": null, "settings": { "isFirstRun": true, @@ -25,6 +25,7 @@ "notificationIcon": "autokey-status", "workAroundApps": ".*VirtualBox.*|krdc.Krdc", "triggerItemByInitial": false, + "disabledModifiers": [], "scriptGlobals": {} }, "folders": [], diff --git a/system/.config/autokey/data/Scripts/email.py b/system/.config/autokey/data/Scripts/email.py index 83f4f37..dd362fb 100644 --- a/system/.config/autokey/data/Scripts/email.py +++ b/system/.config/autokey/data/Scripts/email.py @@ -1,8 +1,3 @@ -import socket private_email = "severin@kaderli.dev" -work_email = "severin@whatwedo.ch" -if socket.gethostname() == "loki": - keyboard.send_keys(work_email) -else: - keyboard.send_keys(private_email) \ No newline at end of file +keyboard.send_keys(private_email) \ No newline at end of file