Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dylanaraps/pywal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.1.0
Choose a base ref
...
head repository: dylanaraps/pywal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.1.1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jan 6, 2018

  1. Copy the full SHA
    8501206 View commit details
  2. version: bump

    dylanaraps committed Jan 6, 2018
    Copy the full SHA
    b9d6eb8 View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 pywal/reload.py
  2. +1 −1 pywal/settings.py
2 changes: 1 addition & 1 deletion pywal/reload.py
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ def tty():
tty_script = os.path.join(CACHE_DIR, "colors-tty.sh")

if os.path.isfile(tty_script):
subprocess.Popen([tty_script])
subprocess.Popen(["sh", tty_script])


def xrdb(xrdb_files=None):
2 changes: 1 addition & 1 deletion pywal/settings.py
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
import platform


__version__ = "1.1.0"
__version__ = "1.1.1"


HOME = os.getenv("HOME", os.getenv("USERPROFILE"))