Parent: [19f58e] (diff)

Download this file

hotrecoll.py    67 lines (58 with data), 2.2 kB

 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
#!/usr/bin/python
#
# This script should be linked to a keyboard shortcut. Under gnome,
# you can do this from the main preferences menu, or directly execute
# "gnome-keybinding-properties"
#
# Make the script executable. Install it somewhere in the executable
# path ("echo $PATH" to check what's in there), and then just enter
# its name as the action to perform, or copy it anywhere and copy the
# full path as the action.
import gtk
import wnck
import os
import sys
from optparse import OptionParser
def main():
parser = OptionParser()
parser.add_option("-m", "--move-away", action="store_true", default=False,
dest="clear_workspace",
help="iconify to other workspace to avoid crowding panel")
(options, args) = parser.parse_args()
screen = wnck.screen_get_default()
while gtk.events_pending():
gtk.main_iteration()
recollMain = ""
recollwins = [];
for window in screen.get_windows():
if window.get_class_group().get_name() == "Recoll":
if window.get_name() == "Recoll":
recollMain = window
recollwins.append(window)
if not recollMain:
os.system("recoll&")
sys.exit(0)
# Check the main window state, and either activate or minimize all
# recoll windows.
workspace = screen.get_active_workspace()
if not recollMain.is_visible_on_workspace(workspace):
for win in recollwins:
win.move_to_workspace(workspace)
if win != recollMain:
win.unminimize(gtk.get_current_event_time())
recollMain.activate(gtk.get_current_event_time())
else:
otherworkspace = None
if options.clear_workspace:
# We try to minimize to another workspace
wkspcs = screen.get_workspaces()
for wkspc in wkspcs:
if wkspc.get_number() != workspace.get_number():
otherworkspace = wkspc
break
for win in recollwins:
if otherworkspace:
win.move_to_workspace(otherworkspace)
win.minimize()
if __name__ == '__main__':
main()