summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2021-05-17 16:14:10 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2021-05-17 16:14:10 -0600
commit10fe760935ab549bdf78654f896e140f125b7f29 (patch)
treed3059c47665a5d631d451afa6d3517485330fb43
parent56aeb85589d4229fe11d2c522160eeb7b420c572 (diff)
update config and remove ssg and derivates because of pyssg
-rwxr-xr-x.config/bspwm/bspwmrc1
-rw-r--r--.config/flameshot/flameshot.ini2
-rw-r--r--.config/polybar/dunst.ini4
-rwxr-xr-x.local/bin/mkblog9
-rwxr-xr-x.local/bin/rssg189
-rwxr-xr-x.local/bin/ssg494
-rwxr-xr-x.local/bin/sshf14
7 files changed, 4 insertions, 709 deletions
diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc
index 31b35cb..15e8de9 100755
--- a/.config/bspwm/bspwmrc
+++ b/.config/bspwm/bspwmrc
@@ -100,6 +100,7 @@ bspc rule -a "Zathura":*:* state=tiled
bspc rule -a "Godot":*:* state=floating
bspc rule -a "picocad":*:* state=floating
bspc rule -a "Steam":*:* state=floating
+# bspc rule -a "pentablet":*:* state=floating rectangle=1130x1020+640+360
# bspc rule -a Gimp desktop='^8' state=floating follow=on
# bspc rule -a Chromium desktop='^2'
# bspc rule -a mplayer2 state=floating
diff --git a/.config/flameshot/flameshot.ini b/.config/flameshot/flameshot.ini
index 987c845..444c8fb 100644
--- a/.config/flameshot/flameshot.ini
+++ b/.config/flameshot/flameshot.ini
@@ -1,7 +1,7 @@
[General]
contrastOpacity=188
disabledTrayIcon=false
-drawColor=#ff0000
+drawColor=#00ffe6
drawThickness=2
filenamePattern=SS_%d%b%y_%I%M%S
saveAfterCopyPath=/home/lz/pix/ss
diff --git a/.config/polybar/dunst.ini b/.config/polybar/dunst.ini
index 202eba0..3186dd0 100644
--- a/.config/polybar/dunst.ini
+++ b/.config/polybar/dunst.ini
@@ -10,5 +10,5 @@ format-underline = ${colors.purple}
hook-0 = echo "%{F$(xresource color2)}%{F-}"
hook-1 = echo "%{F$(xresource color1)}%{F-}"
-click-left = notify-send "DUNST_COMMAND_RESUME" && polybar-msg -p %pid% hook dunst 1
-click-right = notify-send "DUNST_COMMAND_PAUSE" && polybar-msg -p %pid% hook dunst 2
+click-left = dunstctl set-paused false && polybar-msg -p %pid% hook dunst 1
+click-right = dunstctl set-paused true && polybar-msg -p %pid% hook dunst 2
diff --git a/.local/bin/mkblog b/.local/bin/mkblog
deleted file mode 100755
index bbe5e5d..0000000
--- a/.local/bin/mkblog
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-# Create _header.html and _footer.html based on index.html from luevano.xyz.
-# sshf $HOME'/dox/www/luevano.xyz/luevano/index.html' $HOME'/dox/www/luevano.xyz/blog/src'
-
-# Run ssg to make the blog. (blog.luevano.xyz)
-# ssg $HOME'/dox/www/luevano.xyz/blog/src' $HOME'/dox/www/luevano.xyz/blog/dst' "Luevano's blog" 'https://blog.luevano.xyz'
-
-# My new sbg does all of this and more >:)
-sbg -s $HOME'/dox/www/luevano.xyz/blog/src' -d $HOME'/dox/www/luevano.xyz/blog/dst' -t "Luévano's Blog" -b 'https://blog.luevano.xyz' -f '%a, %b %d, %+4Y @ %R %Z' -e $HOME'/dox/www/luevano.xyz/luevano/index.html'
diff --git a/.local/bin/rssg b/.local/bin/rssg
deleted file mode 100755
index 52031e7..0000000
--- a/.local/bin/rssg
+++ /dev/null
@@ -1,189 +0,0 @@
-#!/bin/sh
-#
-# https://www.romanzolotarev.com/bin/rssg
-# Copyright 2018 Roman Zolotarev <hi@romanzolotarev.com>
-#
-# Permission to use, copy, modify, and/or distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-#
-set -e
-
-
-main () {
- test -n "$1" || usage
- test -n "$2" || usage
- test -f "$1" || no_file "$1"
-
-
- index_file=$(readlink -f "$1")
- test -z "${index_file##*html}" && html=$(cat "$index_file")
- test -z "${index_file##*md}" && html=$(md_to_html "$index_file")
- test -n "$html" || usage
-
- base="${index_file%/*}"
- base_url="$(echo "$html" | get_url | sed 's#\(.*\)/[^/]*#\1#')"
-
- url=$( echo "$html" | get_url)
-
- title="$2"
-
- description=$( echo "$html" | get_description |
- remove_tags |
- remove_nbsp )
-
- items=$( echo "$html" | get_items)
-
- rss=$( echo "$items" |
- render_items "$base" "$base_url" |
- render_feed "$url" "$title" "$description")
-
- >&2 echo "[rssg] ${index_file##$(pwd)/} $(echo "$rss" | grep -c '<item>') items"
- echo "$rss"
-}
-
-
-usage() {
- echo "usage: ${0##*/} index.{html,md} title > rss.xml" >&2
- exit 1
-}
-
-
-no_file() {
- echo "${0##*/}: $1: No such file" >&2
- exit 2
-}
-
-
-md_to_html() {
- test -x "$(which lowdown)" || exit 3
- lowdown \
- -D html-skiphtml \
- -D smarty \
- -d metadata \
- -d autolink "$1"
-}
-
-
-get_title() {
- awk 'tolower($0)~/^<h1/{gsub(/<[^>]*>/,"",$0);print;exit}'
-}
-
-
-get_url() {
- grep -i '<a .*rss.xml"' | head -1 |
- sed 's#.*href="\(.*\)".*#\1#'
-}
-
-
-get_items() {
- grep -i 'href=".*" title="' |
- sed 's#.*href="\(.*\)" title="\(.*\)">\(.*\)</a>.*#\1 \2 \3#'
-}
-
-
-get_description() {
- start='sub("^.*<"s"*"t"("s"[^>]*)?>","")'
- stop='sub("</"s"*"t""s"*>.*","")&&x=1'
- awk -v 's=[[:space:]]' -v 't=[Pp]' "$start,$stop;x{exit}"
-}
-
-remove_tags() {
- sed 's#<[^>]*>##g;s#</[^>]*>##g'
-}
-
-
-remove_nbsp() {
- sed 's#\&nbsp;# #g'
-}
-
-
-rel_to_abs_urls() {
- site_url="$1"
- base_url="$2"
-
- abs='s#(src|href)="/([^"]*)"#\1="'"$site_url"/'\2"#g'
- rel='s#(src|href)="([^:/"]*)"#\1="'"$base_url"/'\2"#g'
- sed -E "$abs;$rel"
-}
-
-
-date_rfc_822() {
- date -j '+%a, %d %b %Y %H:%M:%S %z' \
- "$(echo "$1"| tr -cd '[:digit:]')0000"
-}
-
-
-render_items() {
- while read -r i
- do render_item "$1" "$2" "$i"
- done
-}
-
-
-render_item() {
- base="$1"
- base_url="$2"
- item="$3"
-
- site_url="$(echo "$base_url"| sed 's#\(.*//.*\)/.*#\1#')"
-
- date=$(echo "$item"|awk '{print$2}')
- url=$(echo "$item"|awk '{print$1}')
-
- f="$base/$url"
- test -f "$f" && html=$(cat "$f")
- test -f "${f%\.html}.md" && html=$(md_to_html "${f%\.html}.md")
-
- description=$(
- echo "$html" |
- rel_to_abs_urls "$site_url" "$base_url" |
- remove_nbsp
- )
- title=$(echo "$description" | get_title)
- guid="$base_url/$(echo "$url" | sed 's#^/##')"
-
- echo '
-<item>
-<guid>'"$guid"'</guid>
-<link>'"$guid"'</link>
-<pubDate>'"$(date_rfc_822 "$date")"'</pubDate>
-<title>'"$title"'</title>
-<description><![CDATA[
-
-'"$description"'
-
-]]></description>
-</item>'
-}
-
-
-render_feed() {
- url="$1"
- title=$(echo "$2" | remove_nbsp)
- description="$3"
-
- base_url="$(echo "$url" | cut -d '/' -f1-3)"
-
- echo '<?xml version="1.0" encoding="UTF-8"?>
-<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
-<channel>
-<atom:link href="'"$url"'" rel="self" type="application/rss+xml" />
-<title>'"$title"'</title>
-<description>'"$description"'</description>
-<link>'"$base_url"'/</link>
-<lastBuildDate>'"$(date_rfc_822 date)"'</lastBuildDate>
-'"$(cat)"'
-</channel></rss>'
-}
-
-
-main "$@"
diff --git a/.local/bin/ssg b/.local/bin/ssg
deleted file mode 100755
index 2b4a4ec..0000000
--- a/.local/bin/ssg
+++ /dev/null
@@ -1,494 +0,0 @@
-#!/bin/sh
-#
-# https://rgz.ee/bin/ssg5
-# Copyright 2018-2019 Roman Zolotarev <hi@romanzolotarev.com>
-#
-# Permission to use, copy, modify, and/or distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-#
-
-# Commented and modified by David Luévano Alvarado <david@luevano.xyz>
-# Just slight modifications and added functionality.
-# Removed the 'functionality' of only updating newer files as it wasn't working.
-date_format="%a, %b %d, %+4Y @ %R %Z"
-
-main() {
- ### Initial variables and ignores.
- test -n "$1" || usage # src
- test -n "$2" || usage # dst
- test -n "$3" || usage # files
- test -n "$4" || usage # base_path
- test -d "$1" || no_dir "$1"
- test -d "$2" || no_dir "$2"
-
- # Convert src and dst to full paths,
- # avoiding symlinks.
- src=$(readlink_f "$1")
- dst=$(readlink_f "$2")
-
- # Files/directories to ignore.
- IGNORE=$(
- # If .ssgignore doesn't exist,
- # only ignore dotfiles.
- if ! test -f "$src/.ssgignore"
- then
- printf ' ! -path "*/.*"'
- return
- fi
-
- while read -r x
- do
- test -n "$x" || continue
- printf ' ! -path "*/%s*"' "$x"
- done < "$src/.ssgignore"
- )
-
- ### Files.
- title="$3"
-
- # If _header.html and _footer.html exist,
- # export its contents to corresponding variables.
- h_file="$src/_header.html"
- f_file="$src/_footer.html"
- test -f "$f_file" && FOOTER=$(cat "$f_file") && export FOOTER
- test -f "$h_file" && HEADER=$(cat "$h_file") && export HEADER
-
- # Get list of directories inside src and
- # create them inside dst.
- list_dirs "$src" |
- (cd "$src" && cpio -pdu "$dst")
-
- # Get file list and file list with timestamps.
- echo "[file list]"
- fs=$(list_files "$1")
- echo "$fs" | tee "$dst/.files"
-
- echo "[file list w/ ts]"
- fs_ts=$(
- if test -f "$dst/.files_ts"
- then list_files_add_mod_ts "$src" "$dst/.files_ts"
- else list_files_ts "$1"
- fi
- )
- echo "$fs_ts" | tee "$dst/.files_ts"
-
- # If the file list contains .md files, select which
- # parser to use (lowdown or markdown.pl).
- if echo "$fs" | grep -q '\.md$'
- then
- if test -x "$(which lowdown 2> /dev/null)"
- then
- # Give the file list with timestamps instead of the normal one.
- # echo "$fs" | grep '\.md$' |
- echo "$fs_ts" | grep '\.md$' |
- render_md_files_lowdown "$src" "$dst" "$title" "$4" "$fs_ts"
- else
- # I don't really use Markdown.pl, so I didn't change
- # anything Markdown.pl specific.
- if test -x "$(which Markdown.pl 2> /dev/null)"
- then
- echo "$fs" | grep '\.md$' |
- render_md_files_Markdown_pl "$src" "$dst" "$title"
- else
- echo "Couldn't find lowdown nor Markdown.pl"
- exit 3
- fi
- fi
- fi
-
- # If the file is html, do simple parsing.
- echo "$fs" | grep '\.html$' |
- render_html_files "$src" "$dst" "$title"
-
- # For any other file that it's not a .md or .html
- # just send it directly to dst.
- echo "$fs" | grep -Ev '\.md$|\.html$' |
- (cd "$src" && cpio -pu "$dst")
-
- printf '[ssg] ' >&2
- print_status 'file, ' 'files, ' "$fs" >&2
-
-
- ### Sitemap.
- urls=$(list_pages "$src")
- base_url="$4"
- date=$(date +%Y-%m-%d)
-
- # Creates the sitemap.xml using .files_ts timestamps or current date ($date).
- test -n "$urls" && test -n "$fs_ts" &&
- render_sitemap "$urls" "$base_url" "$date" "$fs_ts" > "$dst/sitemap.xml"
-
- print_status 'url' 'urls' "$urls" >&2
- echo >&2
-}
-
-
-readlink_f() {
- # $1 = src or dst
-
- file="$1"
- # Go to the root of the blog (strips dst or src from path)
- cd "$(dirname "$file")"
- # Only get the directory name (src or dst)
- file=$(basename "$file")
-
- # Tests if src or dst is a symbolic link,
- # in which case resolves the symbolic link (readlink)
- # and gets the actual directories.
- while test -L "$file"
- do
- file=$(readlink "$file")
- cd "$(dirname "$file")"
- file=$(basename "$file")
- done
-
- # Avoid all symbolic links and return the actual path.
- dir=$(pwd -P)
- echo "$dir/$file"
-}
-
-
-print_status() {
- # $1 = singular, $2 = plural, $3 = list of somthing (urls, files, etc.)
-
- # Prints a simple status line.
- test -z "$3" && printf 'no %s' "$2" && return
-
- echo "$3" | awk -v singular="$1" -v plural="$2" '
- END {
- if (NR==1) printf NR " " singular
- if (NR>1) printf NR " " plural
- }'
-}
-
-
-usage() {
- echo "usage: ${0##*/} src dst title base_url" >&2
- exit 1
-}
-
-
-no_dir() {
- echo "${0##*/}: $1: No such directory" >&2
- exit 2
-}
-
-
-list_dirs() {
- # $1 = src directory.
-
- # Find all directories inside src excluding the contents of .ssgignore.
- cd "$1" && eval "find . -type d ! -name '.' ! -path '*/_*' $IGNORE"
-}
-
-
-list_files() {
- # $1 = src
-
- # Find all files inside src excluding the contents of .ssgignore.
- cd "$1" && eval "find . -type f ! -name '.' ! -path '*/_*' $IGNORE"
-}
-
-
-list_files_add_mod_ts() {
- # $1 = src, $2 = $dst/.files_ts
-
- # Add modification timestamp on column 2 if stored timestamp
- # (either column 1 or column 2) is less than the current timestamp.
-
- # First get the current timestamp of all files.
- cd "$1" && fn=$(eval "find . -type f ! -name '.' ! -path '*/_*' $IGNORE -exec stat -c '%Y 0 %n' {} \\;")
-
- # Read .files_ts for later comparation. And create
- # new temp file for storing new data.
- fo=$(cat "$2")
-
- # Loop over all new files.
- while IFS= read -r line
- do
- # File name and timestamp of new files.
- fn=$(echo "$line" | cut -d' ' -f3)
- fn_ts=$(echo "$line" | cut -d' ' -f1)
-
- # Check if current line already exists in the old file.
- fo_line=$(echo "$fo" | grep "$fn")
- if test -n "$fo_line"
- then
- fo_ts=$(echo "$fo_line" | cut -d' ' -f1)
-
- # Either add the new timestamp on the second column or
- # just keep the old line.
- if [ $fn_ts -gt $fo_ts ]
- then echo $fo_ts $fn_ts $fn
- else echo $fo_line
- fi
-
- else
- # Just echo the output of a new file without previous timestamp.
- echo $fn_ts" 0 "$fn
- fi
- done <<EOF
- $fn
-EOF
-}
-
-
-list_files_ts() {
- # $1 = src
-
- # Find all files inside src excluding the contents of .ssgignore.
- cd "$1" && eval "find . -type f ! -name '.' ! -path '*/_*' $IGNORE -exec stat -c '%Y 0 %n' {} \\;"
-}
-
-
-render_html_files() {
- # $1 = src, $2 = dst, $3 = title
-
- # Just calls render_html_file for each .html
- # and sends it to it's corresponding .html file in dst.
- while read -r f
- do render_html_file "$3" < "$1/$f" > "$2/$f"
- done
-}
-
-
-render_md_files_lowdown() {
- # $1 = src, $2 = dst, $3 = title, $4 = base_url, $5 = .files_ts
- # (also what is received) and receives a list of .md files.
-
- src="$1"
- dst="$2"
- title="$3"
- base_url="$4"
- fs_ts="$5"
-
- # Transforms .md files into .html files and adds
- # the creation and edit timestamps at the end.
- # echo "[parse .md files]"
- while read -r line
- do
- # Get file name and remove ./ at the start of each file name.
- f=$(echo $line | cut -d' ' -f3)
- f=$(echo $f | cut -d'/' -f2-)
-
- # Get timestamps since birth and modification.
- b=$(echo $line | cut -d' ' -f1)
- m=$(echo $line | cut -d' ' -f2)
-
- # Lowdown outputs an html file,
- # timestamps are added and then
- # it's parsed by 'render_html_file'.
- # Finally it writes to an equivalent .html file.
- html=$(lowdown \
- --html-no-skiphtml \
- --html-no-escapehtml \
- --html-no-owasp \
- --html-no-head-ids < "$src/$f")
-
- # Don't add the timestamp to the index.
- if echo $f | grep "index"
- then
- urls=$(list_pages "$src")
-
- html=$(add_article_list "$urls" "$base_url" "$dst" "$src" "$fs_ts" "$html")
- else
- html=$(add_html_timestamps "$html" "$b" "$m")
- fi
-
- echo "$html" | render_html_file "$title" \
- > "$dst/${f%\.md}.html"
- done
-}
-
-
-add_article_list() {
- # $1 = urls, $2 = base_url, $3 = dst, $4 = src, $5 = .files_ts, $6 = html file from lowdown.
-
- urls="$1"
- base_url="$2"
- dst="$3"
- src="$4"
- # Reverse sorted file list.
- fs="$(echo "$5" | sort -r -k 1)"
- html="$6"
-
- # echo the current html text and add the ul tag for the list.
- echo "$html"
- echo ""
- echo '<ul class="articles">'
-
- c_month_year=
- while IFS= read -r line
- do
- # Some necessary varaibles
- fn=$(echo $line | cut -d' ' -f3 | cut -d'/' -f2-)
- d=$(echo $line | cut -d' ' -f1)
- month_year=$(date --date @$d +"%B %Y")
- date=$(date --date @$d +"%b %d")
-
- # Only work on non index files.
- if [ "$(echo "$fn" | grep "index")" = "" ]
- then
- if [ "$c_month_year" = "" ]
- then
- # For the first appearing year.
- c_month_year=$month_year
- echo ""
- echo "<h3>$month_year</h3>"
- echo ""
- else
- # Each time the year changes, print it.
- if [ "$c_month_year" != "$month_year" ]
- then
- echo ""
- echo "<h3>$month_year</h3>"
- echo ""
- fi
- fi
-
- page_title=$(head -n 1 "$src/$fn" | cut -c 3-)
- echo "<li>$date - <a href=https://blog.luevano.xyz/${fn%\.md}>${page_title}</a></li>"
- fi
- done <<EOF
- $fs
-EOF
- echo "</ul>"
-}
-
-
-add_html_timestamps(){
- # $1 = html text from lowdown, $2 = creation ts, $3 = modification ts
-
- html="$1"
- b="$2"
- m="$3"
-
- # Add timestamps at the end.
- if [ $m -gt $b ]
- then
- html=$(printf "%s\n\n<div class="timestamp">\n<hr>\n<p>Created: $(date --date @$b +"$date_format"); modified: $(date --date @$m +"$date_format")</p>\n</div>" "$html")
- else
- html=$(printf "%s\n\n<div class="timestamp">\n<hr>\n<p>Created: $(date --date @$b +"$date_format")</p>\n</div>" "$html")
- fi
-
- echo "$html"
-}
-
-
-# I don't really use Markdown.pl so I didn't even looked up into it.
-render_md_files_Markdown_pl() {
- while read -r f
- do
- Markdown.pl < "$1/$f" |
- render_html_file "$3" \
- > "$2/${f%\.md}.html"
- done
-}
-
-
-render_html_file() {
- # $1 = title
-
- # Just adds the header and the footer to the html file.
- # h/t Devin Teske
- awk -v title="$1" '
- { body = body "\n" $0 }
- END {
- body = substr(body, 2)
- if (body ~ /<[Hh][Tt][Mm][Ll]/) {
- print body
- exit
- }
- if (match(body, /<[[:space:]]*[Hh]1(>|[[:space:]][^>]*>)/)) {
- t = substr(body, RSTART + RLENGTH)
- sub("<[[:space:]]*/[[:space:]]*[Hh]1.*", "", t)
- gsub(/^[[:space:]]*|[[:space:]]$/, "", t)
- if (t) title = t " &mdash; " title
- }
- n = split(ENVIRON["HEADER"], header, /\n/)
- for (i = 1; i <= n; i++) {
- if (match(tolower(header[i]), "<title></title>")) {
- head = substr(header[i], 1, RSTART - 1)
- tail = substr(header[i], RSTART + RLENGTH)
- print head "<title>" title "</title>" tail
- } else print header[i]
- }
- print body
- print ENVIRON["FOOTER"]
- }'
-}
-
-
-list_pages() {
- # $1 = src
-
- # Find all files inside src that are either .md or .html.
- e="\\( -name '*.html' -o -name '*.md' \\)"
- cd "$1" && eval "find . -type f ! -path '*/.*' ! -path '*/_*' $IGNORE $e" |
- sed 's#^./##;s#.md$#.html#;s#/index.html$#/#'
-}
-
-
-render_sitemap() {
- # $1 = urls, $2 = base_url, $3 = date, $4 = .files_ts
-
- urls="$1"
- base_url="$2"
- date="$3"
- fs="$4"
- # Since fs saves lists as .md files, change .md to .html
- # to be able to parse it.
- fs="$(echo "$fs" | sed 's/\.md/\.html/')"
-
- echo '<?xml version="1.0" encoding="UTF-8"?>'
- echo '<urlset'
- echo 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'
- echo 'xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9'
- echo 'http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"'
- echo 'xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">'
- # Read each line on the urls list.
- while IFS= read -r line
- do
- # Get the corresponding .files_ts line.
- fd=$(echo "$fs" | grep "$line")
-
- if test -n "$fd"
- then
- # Get timestamps present in .files_ts.
- fdb=$(echo "$fd" | cut -d' ' -f1)
- fdm=$(echo "$fd" | cut -d' ' -f2)
-
- # echo "b: $fdb, m: $fdm"
- # If modification timestamp is greater than creation timestamp...
- if [ $fdm -gt $fdb ]
- then
- # Use modification timestamp.
- echo $line |
- sed -E 's#^(.*)$#<url><loc>'"$base_url"'/\1</loc><lastmod>'"$(date --date @$fdm +%Y-%m-%d)"'</lastmod><priority>1.0</priority></url>#'
- else
- # Use creation timestamp.
- echo $line |
- sed -E 's#^(.*)$#<url><loc>'"$base_url"'/\1</loc><lastmod>'"$(date --date @$fdb +%Y-%m-%d)"'</lastmod><priority>1.0</priority></url>#'
- fi
- else
- # Use 'current' timestamp.
- echo $line |
- sed -E 's#^(.*)$#<url><loc>'"$base_url"'/\1</loc><lastmod>'"$date"'</lastmod><priority>1.0</priority></url>#'
- fi
- done <<EOF
- $urls
-EOF
- echo '</urlset>'
-}
-
-
-main "$@"
diff --git a/.local/bin/sshf b/.local/bin/sshf
deleted file mode 100755
index 44766bc..0000000
--- a/.local/bin/sshf
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-# Get the _header.html and _footer.html required for ssg from an already defined html.
-main() {
- in_file="${1:-$HOME/dox/www/luevano.xyz/luevano/index.html}"
- out_folder="${2:-$HOME/dow/www/blog/src}"
-
- sed '/<\/header/q' $in_file > $out_folder/_header.html
- sed -i "s/<title>Luévano/<title>Luévano's Blog/g" $out_folder/_header.html
- # Not proud of this, lol.
- tac $in_file | sed '/<footer/q' | tac > $out_folder/_footer.html
-}
-
-main "$@"