Je souhaite modifier mon fond d'écran sous Ubuntu 11.10 (avec Unity) dans un petit script Python. J'ai trouvé la possibilité de le changer via le gconf-editor
dans /desktop/gnome/background/picture_filename
. Avec python-gconf
, je peux modifier les valeurs nécessaires.
Apparemment, la chaîne gconf n'est pas lue. Si je le modifie (via un script ou via gconf-editor
), le fond d'écran reste et dans le menu de "Changer le fond d'écran", l'ancien fond d'écran est affiché.
Comment puis-je changer le fond d'écran d'Unity via un script Python?
Le code suivant fonctionne.
#!/usr/bin/python
# -*- coding: utf-8 -*-
from gi.repository import Gio
class BackgroundChanger():
SCHEMA = 'org.gnome.desktop.background'
KEY = 'picture-uri'
def change_background(self, filename):
gsettings = Gio.Settings.new(self.SCHEMA)
print(gsettings.get_string(self.KEY))
print(gsettings.set_string(self.KEY, "file://" + filename))
gsettings.apply()
print(gsettings.get_string(self.KEY))
if __== "__main__":
BackgroundChanger().change_background("/home/user/existing.jpg")
Malheureusement, gconf ne nettoie pas vraiment très bien après. C'est et vieux cadre. Avec GNOME3 et Unity dans 11.10, le paramètre d’arrière-plan du bureau est maintenant stocké dans dconf. Avec dconf-editor
vous pouvez trouver le réglage dans org.gnome.desktop.background.picture-uri
Voici un exemple rapide montrant comment changer l’arrière-plan avec python, GTK et GObject Introspection:
#! /usr/bin/python
from gi.repository import Gtk, Gio
class BackgroundChanger(Gtk.Window):
SCHEMA = 'org.gnome.desktop.background'
KEY = 'picture-uri'
def __init__(self):
Gtk.Window.__init__(self, title="Background Changer")
box = Gtk.Box(spacing=6)
self.add(box)
button1 = Gtk.Button("Set Background Image")
button1.connect("clicked", self.on_file_clicked)
box.add(button1)
def on_file_clicked(self, widget):
gsettings = Gio.Settings.new(self.SCHEMA)
dialog = Gtk.FileChooserDialog("Please choose a file", self,
Gtk.FileChooserAction.OPEN,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_OPEN, Gtk.ResponseType.OK))
self.add_filters(dialog)
response = dialog.run()
if response == Gtk.ResponseType.OK:
background = dialog.get_filename()
gsettings.set_string(self.KEY, "file://" + background)
Elif response == Gtk.ResponseType.CANCEL:
pass
dialog.destroy()
def add_filters(self, dialog):
filter_image = Gtk.FileFilter()
filter_image.set_name("Image files")
filter_image.add_mime_type("image/*")
dialog.add_filter(filter_image)
filter_any = Gtk.FileFilter()
filter_any.set_name("Any files")
filter_any.add_pattern("*")
dialog.add_filter(filter_any)
win = BackgroundChanger()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()
Voici deux articles de blog utiles sur GSettings et Python:
http://www.micahcarrick.com/gsettings-python-gnome-3.html
http://www.lucidelectricdreams.com/2011/06/reading-and-writing-gsettings-from.html
Voici
#! /usr/bin/python
import os
os.system("gsettings set org.gnome.desktop.background picture-uri file:///home/user/Pictures/wallpaper/Stairslwallpaper.png")
Peut-être pas la meilleure mais la solution la plus simple:
import commands
command = 'gsettings set org.gnome.desktop.background picture-uri "file:///home/user/test.png"'
status, output = commands.getstatusoutput(command)