diff --git a/README.rst b/README.rst index 29efb690..87da6818 100644 --- a/README.rst +++ b/README.rst @@ -33,7 +33,7 @@ The symbols are as follows: * Status Symbols :⚡: repository clean :♦n: there are ``n`` staged files - :♠n: there are ``n`` unmerged files + :≠n: there are ``n`` unmerged files :‣n: there are ``n`` changed but *unstaged* files :…: there are some untracked files diff --git a/gitstatus.py b/gitstatus.py index 307494f3..30d2a5f6 100755 --- a/gitstatus.py +++ b/gitstatus.py @@ -2,7 +2,7 @@ # -*- coding: UTF-8 -*- # change those symbols to whatever you prefer -symbols = {'ahead of': '↑', 'behind': '↓', 'staged':'♦', 'changed':'‣', 'untracked':'…', 'clean':'⚡', 'unmerged':'♠', 'sha1':':'} +symbols = {'ahead of': '↑', 'behind': '↓', 'staged':'♦', 'changed':'‣', 'untracked':'…', 'clean':'⚡', 'unmerged':'≠', 'sha1':':'} from subprocess import Popen, PIPE