Como posso mudar o papel de parede usando um script Python?

11

Eu quero mudar meu papel de parede no Ubuntu 11.10 (com Unity) em um pequeno script Python. Eu encontrei a possibilidade de alterá-lo via gconf-editor in /desktop/gnome/background/picture_filename . Com python-gconf , posso alterar os valores necessários.

Aparentemente, a string gconf não é lida. Se eu alterá-lo (seja através de um script ou via gconf-editor ), o papel de parede permanece e no menu de "Alterar papel de parede", o papel de parede antigo é mostrado.

Como posso alterar o papel de parede do Unity por meio de um script Python?

O código a seguir funciona.

#!/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 __name__ == "__main__":
        BackgroundChanger().change_background("/home/user/existing.jpg")
    
por guerda 04.12.2011 / 21:50

3 respostas

11

Infelizmente, o gconf realmente não se limpa muito bem. Isso e cenário antigo. Com o GNOME3 e o Unity no 11.10, a configuração do plano de fundo da área de trabalho agora é armazenada no dconf. Com dconf-editor você pode encontrar a configuração em org.gnome.desktop.background.picture-uri

Aqui está um exemplo rápido mostrando como mudar o fundo com python, GTK e 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()

Aqui estão duas postagens úteis no GSettings e no Python:

link

link

    
por andrewsomething 04.12.2011 / 23:32
8

Aqui você vai

#! /usr/bin/python

import os

os.system("gsettings set org.gnome.desktop.background picture-uri file:///home/user/Pictures/wallpaper/Stairslwallpaper.png")
    
por user40868 07.01.2012 / 04:11
2

Talvez não seja a melhor, mas a solução mais fácil:

import commands
command = 'gsettings set org.gnome.desktop.background picture-uri "file:///home/user/test.png"'
status, output = commands.getstatusoutput(command)
    
por jochenh 04.01.2012 / 15:19