44 lines
1.4 KiB
Bash
44 lines
1.4 KiB
Bash
PROD_STR="Simple Note System"
|
|
VER_STR="v2.0a9"
|
|
YEAR=2016
|
|
|
|
cat << EOF
|
|
#!/bin/bash
|
|
# Simple Note System
|
|
# Copyright (C) 2016, Jon Lewis
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
# Prevent freak accidents involving the root directory
|
|
if [ -z "\$HOME" ]; then HOME=/home/"\$(whoami)"; fi
|
|
|
|
# Store files and locations
|
|
readonly PROD_STR="$PROD_STR"
|
|
readonly VER_STR="$VER_STR"
|
|
readonly ROOT_DIR="\$HOME"/.config/sns
|
|
readonly NOTES_DIR="\$ROOT_DIR"/notes
|
|
readonly TMP_DIR="\$ROOT_DIR"/tmp
|
|
readonly CONFIG_FILE="\$ROOT_DIR/sns.conf"
|
|
|
|
#Color codes for messages
|
|
readonly RED_COLOR='\033[1;31m'
|
|
readonly YELLOW_COLOR='\033[1;33m'
|
|
readonly RESET_COLOR='\033[0m'
|
|
|
|
#Print the program header to stdout
|
|
printf "%s\n" "\$PROD_STR"
|
|
printf "%s\n" "------------------"
|
|
EOF
|