En Ubuntu uso variedad. Es "un cambiador automático de fondos de pantalla, descargador y administrador".
Puede extraer imágenes de una fuente RSS y actualizar automáticamente su escritorio.
Por lo tanto, me imagino que si configura una fuente RSS que toma una captura de pantalla de su sitio web cada x horas y le engancha variedad, tendría una solución.
En realidad, no sé cómo configurar una fuente RSS, pero si tiene alguna pregunta sobre la variedad, hágamelo saber.
Editar:
Aquí hay otra forma de hacer lo que quieres.
- Ejecutar
sudo apt-get install libqt5webkit5 python3-pyqt5.qtwebkit python3-pyqt5 python3
para instalar las bibliotecas requeridas
Configure un archivo con el siguiente código python3. Este código toma una captura de pantalla de WEBSITE_URL y actualiza su escritorio Ubuntu.
import sys
import time
import os
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
from PyQt5.QtWebKitWidgets import *
WEBSITE_URL='https://earth.nullschool.net/#current/wind/surface/level/overlay=temp/winkel3'
OUT_FILE="websiteScreenshot.png"
class Screenshot(QWebView):
def __init__(self):
self.app = QApplication(sys.argv)
QWebView.__init__(self)
self._loaded = False
self.loadFinished.connect(self._loadFinished)
def capture(self, url, output_file):
self.load(QUrl(url))
self.wait_load()
# set to webpage size
frame = self.page().mainFrame()
self.page().setViewportSize(frame.contentsSize())
# render image
image = QImage(self.page().viewportSize(), QImage.Format_ARGB32)
painter = QPainter(image)
frame.render(painter)
painter.end()
print ('saving', output_file)
image.save(output_file)
def wait_load(self, delay=5):
# process app events until page loaded
while not self._loaded:
self.app.processEvents()
t_end = time.time() + delay
while time.time() < t_end:
self.app.processEvents()
self._loaded = False
def _loadFinished(self, result):
self._loaded = True
s = Screenshot()
s.capture(WEBSITE_URL, OUT_FILE)
#Update your background
workingDir=os.path.dirname(os.path.realpath(__file__))
os.system("gsettings set org.gnome.desktop.background picture-uri file://"+workingDir+"/"+OUT_FILE)
En "Aplicaciones de inicio", presione Agregar y escriba watch -n 3600 python3 yourfilepath
bajo el comando. Reemplace yourfilepath
con la ruta a donde guardó el pythonscript. Esto ejecutará el script cada 3600 segundos = 1 hora.
Tenga en cuenta la variable de retraso en la función wait_load. Aumente su valor si la página web no tiene tiempo para cargar.