pywal: cat sequences causes ]708;[100]#040805 to appear in new termite terminal
$ wal -v wal 3.2.1
For me it seems that commit https://github.com/dylanaraps/pywal/commit/da0e2ff05a885422dfc61fc87ae3c68ec713751b introduced the issue.
In my opinion set_color should be used instead of set_special (at least for me that resolved it).
(Also adding 4; before 708; in .cache/wal/sequences solves the issue temporarily)
During the debugging of this I found another minor coding issue:
in set_special() the default value for alpha is 100 (the number), while later in the function the alpha is compared to the string "100"(in python the number and string 100 are different),
thus even if the alpha parameter is omitted and the value of it is 100 it will be added to the sequence.
(Again, this is nothing serious, just wanted to leave a note about it)
About this issue
- Original URL
- State: closed
- Created 6 years ago
- Reactions: 22
- Comments: 19 (1 by maintainers)
Fixed in master. Use
--vtewith pywal. New release shortly.