1
0
Fork 0
mirror of https://github.com/marty-oehme/scripts.git synced 2025-12-10 22:12:45 +00:00

renamed example script

This commit is contained in:
Patrizio Bekerle 2017-05-16 16:33:15 +02:00
parent 4355b9d6fd
commit c2d2ee361c
No known key found for this signature in database
GPG key ID: 2E9FFD770DABE838

View file

@ -0,0 +1,15 @@
import QtQml 2.0
/**
* This script is just an example of how to use scripts
* Visit http://docs.qownnotes.org/ for more information about scripting
*/
QtObject {
/**
* Just show some log entries when the script is initialized
*/
function init() {
script.log("This is just an example script.");
script.log("Visit http://docs.qownnotes.org/ for more information about scripting.");
}
}