The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
15 views

GNOME configuration database type-inference

My desktop is GNOME and I am programmatically changing its settings via Python. The database has simple value types, e.g. strings, ints, lists of strings, list of ints, ... A simple CLI tool to ...
2
votes
0answers
100 views

How to get gnome-terminal profile for current window? Or ProfileID

Using gnome-terminal --save-config foo all gnome-terminal windows and their properties are saved to file foo. An entry in foo is typically like: [Window3] MenubarVisible=false ...
0
votes
1answer
371 views

setting protocol handler by x-scheme-handler in centos, opensuse

My requirement is to run custom protocol handler using firefox in linux systems. I have successfully added protocol handler in Ubuntu by creating myapp.desktop file in /usr/share/applications. The ...
2
votes
1answer
137 views

How to force my virtualenv to see this compiled module installed at the system level?

I installed the package python-gconf on Ubuntu 12.04 and played with it: it's a python binding to the gnome configuration tool, and there is no pypi package for it. As soon as I created a virtualenv ...
0
votes
0answers
174 views

Import and export settings with gconftool-2

I make this script to export station name and freqency from fm-radio aplication that save preset in %gconf.xml #!/bin/sh if [ -z $1 ] then echo usage: $0 backup-filename exit 1; fi ...
1
vote
1answer
40 views

What's the proper way to change a gconf schema during a .deb package upgrade?

I made some modifications to an open source package (Guake), and I had to change the type of some of the keys in the gconf schema. The problem is that when I install the new .deb that I built, the ...
0
votes
1answer
108 views

GTK configuration source

I am developing cross platform(Windows, Linux) desktop application using Mono and Gtk#. Application will have some configuration. And I have a question about storing configuration data. Where is the ...
0
votes
4answers
2k views

How to create/delete gconf directory with gconftool-2?

... ughm ... the subject? I am writing a script that will create gnome-terminal profiles for various machines that I want to connect to. I need a custom command to run on each terminal and profile is ...
3
votes
1answer
396 views

Changing wallpapers in python

I'm running a Maverick on my machine, and I'm trying to write a script to change wallpapers in python. Heres my progress so far. import gconf client = gconf.client_get_default() current_bg = ...
1
vote
1answer
147 views

Equivalent to gconf on OSX

Is there something equivalent (and available by default) to gconf on OSX?
4
votes
3answers
1k views

How can I run a Perl script as root yet still affect user gconf settings

THE NEW QUERY: I am trying to make a unified script that initializes a new Ubuntu install to my liking, it must be run under sudo to install packages, but using gconftool-2 to affect gconf setting ...
1
vote
2answers
130 views

Configuration storage for a desktop application

What are the benefits of choosing either: a file in the user's home directory, e.g. ~/.myapp/config using the user's gconf database I already know a couple of things; storing data in the user's ...
0
votes
1answer
427 views

GConf Problem gconftool --spawn doesn't work

Last time I started to having problem with gconftools, I'm using Ubuntu Server Edition 10.04 LTS When I make command gconftools-2 --spawn I've gor an error: Failed to spawn the ...
0
votes
2answers
211 views

Check gconf-client with C

i use gconf/gconf-client.h in ,y C application, but i don't know, is gconf on users machine. How can i check gconf/gconf-client.h and gconf there or not? Thank you
4
votes
3answers
1k views

User Crontab + Python + Random wallpapers = Not working?

I have a python script that correctly sets the desktop wallpaper via gconf to a random picture in a given folder. I then have the following entry in my crontab * * * * * python ...
9
votes
3answers
4k views

How can I make a fake “active session” for gconf?

I've automated my Ubuntu installation - I've got Python code that runs automatically (after a clean install, but before the first user login - it's in a temporary /etc/init.d/ script) that sets up ...