直接给出源码
设置壁纸
feh --bg-scale /tmp/earth.png
设置桌面大小,及图片放大倍数
SCALE = 4 WIDTH = 1368 HEIGHT = 768
from PIL import Image from io import BytesIO from urllib.request import Request, urlopen from datetime import datetime import json SCALE = 4 WIDTH = 1368 HEIGHT = 768 def get_info(): url = "http://himawari8-dl.nict.go.jp/himawari8/img/D531106/latest.json" request = Request(url) response = urlopen(request, timeout=10) return json …