9d06a61780
Kept wondering wether I should keep the MIT (because I highly value freedom of act) or embrace the GPL (because I don't want this work to become close-source). I do understand that this commit (and the next one that is actually changing the LICENSE) is a defeat for freedom. I guess freedom has been defeated long time ago, when people and companies figured that was "free" (as in gratis) was also "free" (as in disposable). This is not how I think free (as in "libre") works but hey, that surely is how Intel and other corporations see it (ec: Intel Management Engine is entirely based on Minix, is close-source, and *maybe* used as a backdoor by anybody). It boils down to the Paradox of Tolerance, and I surely won't tolerate shit going their way. If you want to take open source stuff, be my guest ; but you have to play by the rules.
42 lines
1.2 KiB
Bash
Executable File
42 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
######################################################################
|
|
# @author : swytch
|
|
# @file : mom
|
|
# @license : GPLv3
|
|
# @created : Wednesday May 20, 2020 18:19:56 CEST
|
|
#
|
|
# @description : create a groff doc with genereic metadata
|
|
# open it with (neo)vim
|
|
######################################################################
|
|
|
|
|
|
if [ -z "$1" ]; then
|
|
printf 'Please provide a name for your file\n'
|
|
elif [ -e "$1" ]; then
|
|
printf 'This filename is already taken, please provide a different name\n'
|
|
else
|
|
touch "$1" && \
|
|
printf '\# metadata' >> "$1" && \
|
|
printf '\n.AUTHOR "David JULIEN"' >> "$1" && \
|
|
printf '\n.TITLE' >> "$1" && \
|
|
printf '\n\# template' >> "$1" && \
|
|
printf '\n.PRINTSTYLE TYPESET' >> "$1" && \
|
|
printf '\n.QUOTE_STYLE QUAD' >> "$1" && \
|
|
printf '\n.SMARTQUOTES FR' >> "$1" && \
|
|
printf '\n.ATTRIBUTE_STRING "par"' >> "$1" && \
|
|
printf '\n.LINEBREAK_CHAR ""' >> "$1" && \
|
|
printf '\n\# cover' >> "$1" && \
|
|
printf '\n.COVER AUTHOR TITLE BLANKPAGE' >> "$1" && \
|
|
printf '\n.DOCHEADER OFF' >> "$1" && \
|
|
printf '\n\#' >> "$1" && \
|
|
printf '\n.START' >> "$1" && \
|
|
|
|
# checks if neovim is intalled
|
|
if command -v nvim > /dev/null 2>&1; then
|
|
nvim "$1"
|
|
else
|
|
vim "$1"
|
|
fi
|
|
fi
|