Skip to content

Commit

Permalink
set the primary color to black
Browse files Browse the repository at this point in the history
because space is black for some reason:
https://en.wikipedia.org/wiki/Olbers%27_paradox
  • Loading branch information
boramalper committed Aug 5, 2016
1 parent 950f69f commit af1e637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion himawaripy/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def set_background(file_path):
subprocess.call(["gsettings", "set", "org.gnome.desktop.background", "draw-background", "false"])
subprocess.call(["gsettings", "set", "org.gnome.desktop.background", "picture-uri", "file://" + file_path])
subprocess.call(["gsettings", "set", "org.gnome.desktop.background", "picture-options", "scaled"])
subprocess.call(["gsettings", "set", "org.gnome.desktop.background", "primary-color", "#FFFFFF"])
subprocess.call(["gsettings", "set", "org.gnome.desktop.background", "primary-color", "#000000"])
elif de == "mate":
subprocess.call(["gsettings", "set", "org.mate.background", "picture-filename", file_path])
elif de == 'i3':
Expand Down

0 comments on commit af1e637

Please sign in to comment.