diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-07-11 16:47:00 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-07-11 16:47:00 -0700 |
commit | 3625160acc1715fc380f58ec3c4248485bed2370 (patch) | |
tree | dc95a32d81daac298cef69879a639029797fb762 /qt-recordmydesktop/src/rmdConfig.py.in | |
parent | cfcca8681b88a171fb2cdbb83daa5f22bbedb6b8 (diff) |
*: drop {gtk,qt}-recordmydesktop subdirs
This restores the recordmydesktop/ subdir as root from the mirror I
cloned by fork from.
I have no particular interest in the gtk/qt frontends and it doesn't
appear they were part of a single tree in the past. But I will
probably preserve backwards compatibility of the cli so they can
continue to work with this fork installed.
Diffstat (limited to 'qt-recordmydesktop/src/rmdConfig.py.in')
-rw-r--r-- | qt-recordmydesktop/src/rmdConfig.py.in | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/qt-recordmydesktop/src/rmdConfig.py.in b/qt-recordmydesktop/src/rmdConfig.py.in deleted file mode 100644 index bb046c9..0000000 --- a/qt-recordmydesktop/src/rmdConfig.py.in +++ /dev/null @@ -1,38 +0,0 @@ -import os -VERSION='@VERSION@' -PREFIX='@PREFIX@' -pixmapdir=os.path.join('@DATADIR@'.replace("${prefix}",PREFIX), 'pixmaps') -locale_install_dir=os.path.join('@DATADIR@'.replace("${prefix}",PREFIX), 'locale') - -#binary values expressed with 1 and zero instead of True and False -#are upside down. That means 0 is enabled and 1 disabled - -default_values=[15, #framerate - 0, #cursor - True, #sound - 1, #full shots,0 on 1 off - os.path.join(os.getenv('HOME'),'out.ogv'), #filename - [-1,-1,-1,-1], #recording area(<0 means auto) - 0, #delay ,unused on 0.3 - 1, #no of channels - 22050, #frequency - 'DEFAULT', #device - 63, #video quality - 10, #audio quality - "$DISPLAY", #display, this is not interpreted as an env variable - #but when the value is set to this the argument is omitted - 0, #shared memory,0 on 1 off - 0, #reset recording area ,0 on 1 off - 1, #follow mouse,0 on 1 off - 1, #quick subsampling,0 on 1 off - "/tmp", #working directory - 1, #on the fly encoding,0 on 1 off - 0, #zero compression,0 on 1 off - False, #overwrite existing files - 0, #include window decorations, 0 on 1 off - False, #Use jack - [], #jack ports - 0, #tooltips,0 on 1 off - 0, #draw an on-screen frame, surrounding the capture area,0 on 1 off - "", #extra options - ] |