From 6a9ce82b3ce7419d39d4cff6f3601c618a8360bb Mon Sep 17 00:00:00 2001 From: Joseph Groocock Date: Thu, 31 Mar 2016 19:25:48 +0100 Subject: [PATCH] Ignore bookmarks file created by GTK configs --- .gitignore | 1 + scripts/init-dotfiles.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7e1f6a7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +bookmarks diff --git a/scripts/init-dotfiles.sh b/scripts/init-dotfiles.sh index d4fa4c4..dddca60 100755 --- a/scripts/init-dotfiles.sh +++ b/scripts/init-dotfiles.sh @@ -4,7 +4,7 @@ set -e cd $HOME echo cd `pwd` -files=`ls -A $DOTFILES | awk '/^\..*/ && !/\.config$/ && !/\.git$/'` +files=`ls -A $DOTFILES | awk '/^\..*/ && !/\.config$/ && !/\.git$/ && !/\.gitignore$/'` homepath=`echo $DOTFILES | sed "s|$HOME/||g"` conffiles=`ls -A "$DOTFILES/.config"` confpath=`echo $homepath | sed "s|.config/||g"`