diff options
Diffstat (limited to '')
-rw-r--r-- | pytagomacs/Makefile | 11 | ||||
-rw-r--r-- | pytagomacs/pytagomacsrc | 7 |
2 files changed, 18 insertions, 0 deletions
diff --git a/pytagomacs/Makefile b/pytagomacs/Makefile new file mode 100644 index 0000000..139cef6 --- /dev/null +++ b/pytagomacs/Makefile @@ -0,0 +1,11 @@ +.POSIX: + +install: + mkdir -p -- ~/.config + test ! -d ~/.config/pytagomacsrc + ln -sf -- ~/.dotfiles/pytagomacs/pytagomacsrc ~/.config/pytagomacsrc + +uninstall: + -unlink -- ~/.config/pytagomacsrc + +.PHONY: install uninstall diff --git a/pytagomacs/pytagomacsrc b/pytagomacs/pytagomacsrc new file mode 100644 index 0000000..d35fa58 --- /dev/null +++ b/pytagomacs/pytagomacsrc @@ -0,0 +1,7 @@ +# -*- python -*- + +INACTIVE_COLOUR = '34' +ACTIVE_COLOUR = '01;31' +SELECTED_COLOUR = '44;37' +STATUS_COLOUR = '07' +ALERT_COLOUR = None |