mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-01-09 15:38:30 +01:00
wallpaper: Correct sqlite3 command.
This commit is contained in:
parent
b49ace1294
commit
d8293b20de
@ -84,7 +84,7 @@ def set_desktop_wallpaper(desktop, img):
|
||||
def set_mac_wallpaper(img):
|
||||
"""Set the wallpaper on macOS."""
|
||||
db_file = HOME / "Library/Application Support/Dock/desktoppicture.db"
|
||||
subprocess.call(["sqlite3", str(db_file), f"update data set value = {img}"])
|
||||
subprocess.call(["sqlite3", db_file, f"update data set value = '{img}'"])
|
||||
|
||||
# Kill the dock to fix issues with wallpapers sharing names.
|
||||
util.disown("killall", "Dock")
|
||||
|
Loading…
Reference in New Issue
Block a user