File: qtm-chooseRecent.py

package info (click to toggle)
qtm 1.3.17-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,268 kB
  • ctags: 863
  • sloc: cpp: 9,672; perl: 805; sh: 81; python: 65; makefile: 4
file content (41 lines) | stat: -rw-r--r-- 1,186 bytes parent folder | download | duplicates (2)
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
#! /usr/bin/env python

#   qtm-quickpost.py - Python script to launch a quickpost from the
#   Ubuntu Unity launcher.
#
#   Copyright (C) 2011, Matthew J Smith
# *
# * This file is part of QTM.
# * QTM is free software; you can redistribute it and/or modify
# * it under the terms of the GNU General Public License (version 2), as
# * published by the Free Software Foundation.
# *
# * This program is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# * GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA



import dbus
import os

qtm_started = False
sb = dbus.SessionBus()

while True:
  try:
    qtm = sb.get_object( 'uk.co.blogistan.catkin', '/MainApplication' )
  except dbus.exceptions.DBusException:
    if qtm_started == False:
      os.system( "qtm --no-new-window &" )
      qtm_started = True
    continue
  break
 
qtm.chooseRecentFile()