1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
.. _commands-script:
Script Commands
===============
Script command is type of command which allows overriding existing functions
and creating new ones (allowing new command line arguments to be used).
The command is executed before any script and all defined variables and
functions are available to the scripts.
Script commands can be created in Command dialog by setting Type of Action to
:ref:`command-dialog-script`.
Extending Command Line Interface
--------------------------------
By adding following script command you can use ``hello()`` from other script
or on command line (``copyq hello``):
.. code-block:: js
global.hello = function() {
print('Hello, World!\n')
}
Script commands are executed in own scope so as to avoid adding temporary
variables in the global scope which contains all functions like ``copy()`` or
``add()``. Using ``global`` object allows to modify the global scope.
It's useful to move code used by multiple commands to a new script command.
It can also simplify using ``copyq`` from another application or shell script.
Override Functionality
----------------------
Existing functions can be overridden from script commands.
Specifically :any:`onClipboardChanged` and functions it calls can be
overridden to customize handling of new clipboard content.
E.g. following command saves only textual clipboard data and removes any
formatted text:
.. code-block:: js
var saveData_ = saveData
saveData = function() {
if ( str(data(mimeText)) != "" ) {
popup('Saving only text')
removeData(mimeHtml)
saveData_()
} else {
popup('Not saving non-textual data')
}
}
E.g. following command overrides ``paste()`` to use an external utility for
pasting clipboard:
.. code-block:: js
paste = function() {
var x = execute(
'xdotool',
'keyup', 'alt', 'ctrl', 'shift', 'super', 'meta',
'key', 'shift+Insert')
if (!x)
throw 'Failed to run xdotool'
if (x.stderr)
throw 'Failed to run xdotool: ' + str(x.stderr)
}
E.g. show custom notifications for clipboard and Linux mouse selection changes.
.. code-block:: js
function clipboardNotification(owns, hidden) {
var id = isClipboard() ? 'clipboard' : 'selection'
var icon = isClipboard() ? '\uf0ea' : '\uf246'
var owner = owns ? 'CopyQ' : str(data(mimeWindowTitle))
var title = id + ' - ' + owner
var message = hidden ? '<HIDDEN>' : data(mimeText).left(100)
notification(
'.id', id,
'.title', title,
'.message', message,
'.icon', icon
)
}
var onClipboardChanged_ = onClipboardChanged
onClipboardChanged = function() {
clipboardNotification(false, false)
onClipboardChanged_()
}
var onOwnClipboardChanged_ = onOwnClipboardChanged
onOwnClipboardChanged = function() {
clipboardNotification(true, false)
onOwnClipboardChanged_()
}
var onHiddenClipboardChanged_ = onHiddenClipboardChanged
onHiddenClipboardChanged = function() {
clipboardNotification(true, true)
onHiddenClipboardChanged_()
}
|