From 27b17fe3c96f93bea9248df66a13a3e282a82893 Mon Sep 17 00:00:00 2001 From: Harald Pfeiffer Date: Wed, 23 Mar 2022 17:42:39 +0100 Subject: exclude .local files from distributed tarball --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e283aa1..37bae6d 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ all: complete complete: checkenv tempdirs tarball removedirs distrib removetar tarball: - rsync -avu bin .bash .bash_profile .bashrc .flake8 .gitconfig .gnupg .perlcriticrc .profile .pylintrc .tmux.conf .tmux.conf.local tmux-gpakosz tmux-yank .vimrc --exclude=.git --exclude=.gitattributes --exclude=.github --exclude=.gitignore --exclude='LICENSE*' --exclude='README*' distribute/tar/ + rsync -avu bin .bash .bash_profile .bashrc .flake8 .gitconfig .gnupg .perlcriticrc .profile .pylintrc .tmux.conf .tmux.conf.local tmux-gpakosz tmux-yank .vimrc --exclude=.git --exclude=.gitattributes --exclude=.github --exclude=.gitignore --exclude='LICENSE*' --exclude='README*' --exclude='*.local' distribute/tar/ tar -C distribute/tar -cvJf dotfiles.tar.xz . rm -rf distribute/tar -- cgit v1.2.3 From 56b60c35af0e5ab593aaa124436e6674a1693dab Mon Sep 17 00:00:00 2001 From: Harald Pfeiffer Date: Wed, 23 Mar 2022 17:45:53 +0100 Subject: own colours for AIX --- .bash/prompt.bash | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.bash/prompt.bash b/.bash/prompt.bash index 734988a..71845d1 100644 --- a/.bash/prompt.bash +++ b/.bash/prompt.bash @@ -28,7 +28,8 @@ case "$MYUID" in # the colour of Geeko: #*suse|aix) FGC2="fgcolor 22";FGC3="fgcolor 41";; *sles*) FGC2="fgcolor 22";FGC3="fgcolor 83";; - *suse|aix) FGC2="fgcolor 30";FGC3="fgcolor 83";; + *suse) FGC2="fgcolor 30";FGC3="fgcolor 83";; + aix) FGC2="fgcolor 238";FGC3="fgcolor 83";; *centos*) FGC2="fgcolor 25";FGC3="fgcolor 208";; *solaris) FGC2="fgcolor 31";FGC3="fgcolor 124";; ubuntu) FGC2="fgcolor 130";FGC3="fgcolor 215";; @@ -45,7 +46,8 @@ case "$MYUID" in redhat|fedora) FGC1="fgcolor 88";FGC3="fgcolor 203";; #*suse|aix) FGC1="fgcolor 22";FGC3="fgcolor 41";; *sles*) FGC1="fgcolor 22";FGC3="fgcolor 83";; - *suse|aix) FGC1="fgcolor 30";FGC3="fgcolor 83";; + *suse) FGC1="fgcolor 30";FGC3="fgcolor 83";; + aix) FGC1="fgcolor 238";FGC3="fgcolor 83";; *centos*) FGC1="fgcolor 25";FGC3="fgcolor 208";; *solaris) FGC1="fgcolor 31";FGC3="fgcolor 124";; ubuntu) FGC1="fgcolor 130";FGC3="fgcolor 215";; -- cgit v1.2.3