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

Commit

Permalink
sequences: Fix incorrect macOS sequence.
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Aug 15, 2017
1 parent 554a95f commit 16c4b69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pywal/sequences.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def set_special(index, color, iterm_name="h"):
alpha = util.Color.alpha_num

if OS == "Darwin":
return "\033[P%s%s\033\\" % (iterm_name, color.strip("#"))
return "\033]P%s%s\033\\" % (iterm_name, color.strip("#"))

if index in [11, 708] and alpha != 100:
return "\033]%s;[%s]%s\007" % (index, alpha, color)
Expand Down

0 comments on commit 16c4b69

Please sign in to comment.