This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Command] | |
Command=" | |
copyq: | |
var x = 1850 | |
var y = 1000 | |
var snippetsTabName = 'Snippets' | |
// List snippets instead of search combo box? | |
var listSnippets = false | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Command] | |
Command=" | |
function showOwner() { | |
popup( | |
isClipboard() ? 'Clipboard Owner' : 'Selection Owner', | |
data(mimeWindowTitle) | |
) | |
} | |
var onClipboardChanged_ = onClipboardChanged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Command] | |
Command=" | |
copyq: | |
// path to python script | |
// (always use forward slash as path separator) | |
script = 'c:/scripts/modify_text.py' | |
// get old text from clipboard | |
var oldText = str(clipboard()) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Command] | |
Automatic=true | |
Command=" | |
copyq: | |
var text = str(data(mimeText)) | |
if (!text) | |
abort() | |
text += '\\n\\n' | |
setData(mimeText, text) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Command] | |
Command=" | |
copyq: | |
hide() | |
var items = selectedItemsData() | |
var text = '' | |
for (var i in items) { | |
var itemText = str(items[i][mimeText]).trim() | |
text += itemText + '\\n\\n' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import pyatspi | |
def on_object_focused(event): | |
if not event.source.getState().contains(pyatspi.STATE_FOCUSED): | |
return | |
print(event) | |
extents = event.source.get_extents(pyatspi.DESKTOP_COORDS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PDCClientWrapper(object): | |
def __init__(self, client, page_size): | |
self.client = client | |
self.page_size = page_size | |
def __call__(self, *args, **kwargs): | |
if 'page_size' not in kwargs: | |
kwargs['page_size'] = self.page_size | |
return self.client(*args, **kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Command] | |
Name=Edit File | |
Match=^([a-zA-Z]:[\\\\/]|~|file://|%\\w+%|$\\w+|/) | |
Command=" | |
copyq: | |
var editor = config('editor') | |
var fileName = str(input()) | |
.replace(/^\\/([a-zA-Z])\\//, '$1:/') | |
.replace(/^file:\\/\\//, '') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Command] | |
Automatic=true | |
Command=" | |
copyq: | |
// Select session to send data to. | |
var sessions = [ | |
\"my_session_2\", | |
\"my_session_3\", | |
\"my_session_4\", | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Command] | |
Name=Search All Tabs | |
Command=" | |
copyq: | |
// Name for tab for storing matching items. | |
var search_tab_name = \"Search\" | |
// Returns true iff item at index matches regex. | |
function item_matches(item_index, re) | |
{ |
NewerOlder