Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
fix 修复xfce设置出错
Browse files Browse the repository at this point in the history
  • Loading branch information
Pylogmon committed Feb 23, 2023
1 parent c6402e9 commit 3534762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion earth_wallpaper/utils/systems/linux/xfce.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def __init__(self, file):

def run(self):
output = os.popen("xfconf-query -c xfce4-desktop -p /backdrop -l")
output = output.splitlines()
output = output.read().splitlines()
for i in output:
if "last-image" in i:
os.system(
Expand Down

0 comments on commit 3534762

Please sign in to comment.