diff --git a/.config b/.config deleted file mode 100644 index 0422d30..0000000 --- a/.config +++ /dev/null @@ -1,10 +0,0 @@ -global_title="blog | ~newusername" -global_description="a blog about ~newusername" -global_author_url="https://envs.net/~newusername/" -global_url="https://envs.net/~newusername/blog" -global_author="~newusername" -#global_twitter_username="" -global_email="newusername@envs.net" -header_file=".header.template" -body_begin_file=".beforebody" -body_end_file=".afterbody" diff --git a/.config_example b/.config_example new file mode 100644 index 0000000..15dc2ae --- /dev/null +++ b/.config_example @@ -0,0 +1,10 @@ +global_title="blog | ~username" +global_description="a blog about ~username" +global_author_url="https://envs.net/~username/" +global_url="https://envs.net/~username/blog" +global_author="~username" +#global_twitter_username="" +global_email="username@envs.net" +header_file=".header.template" +body_begin_file=".beforebody" +body_end_file=".afterbody" diff --git a/Makefile b/Makefile index bcee458..d60f198 100644 --- a/Makefile +++ b/Makefile @@ -4,12 +4,12 @@ install: @echo Installing the executable to $(BINDIR) @mkdir -p $(BINDIR) @cp -f bb.sh $(BINDIR)/bb - @cp -f .config $(BINDIR)/bb_user_conf.tmpl + @cp -f .config_example $(BINDIR)/bb_user_config.tmpl @chmod 755 $(BINDIR)/bb uninstall: @echo Removing the executable from $(BINDIR) @rm -f $(BINDIR)/bb - @rm -f $(BINDIR)/bb_user_conf.tmpl + @rm -f $(BINDIR)/bb_user_config.tmpl .PHONY: install uninstall