Update 2023-01-31 18:41 OpenBSD/amd64

This commit is contained in:
c0dev0id 2023-01-31 18:41:01 +01:00
parent 45b934af37
commit 41f53e8da9
2 changed files with 8 additions and 2 deletions

View File

@ -19,7 +19,12 @@ test -f ${HOME}/.bin/_config \
test -f "${HISTFILE}" \
|| touch "${HISTFILE}"
HISTDATA="$(while IFS= read -r l; do echo "${#l} $((++n)) $l"; done < "${HISTFILE}" | sort -t\| -k 2 -u | sort -n | cut -d" " -f3-)"
HISTDATA="$(while IFS= read -r l; do echo "${#l} $((++n)) $l"; done \
< "${HISTFILE}" \
| sed 's|/$||;s|http[s]\{0,1\}://||' \
| sort -t\| -k 2 -u \
| sort -n \
| cut -d" " -f3-)"
PICKLIST="paste_from_clipboard
pick_from_history

View File

@ -57,7 +57,7 @@ dopath("cfg_notioncore")
dopath("cfg_kludges")
-- Define some layouts.
-- dopath("cfg_layouts")
dopath("cfg_layouts")
-- dopath("cfg_layout_dev")
-- Load modules
@ -71,3 +71,4 @@ dopath("mod_statusbar")
dopath("mod_float-sb")
dopath("mod_xrandr")