New home computer. Making sure we are synced.

This commit is contained in:
Derek Taylor
2021-08-29 19:01:51 -05:00
parent 6dd42c7c5f
commit 6209a78b5d
5 changed files with 4 additions and 11 deletions

Binary file not shown.

View File

@@ -1,11 +0,0 @@
#!/bin/bash
url=$({
cat "$QUTE_CONFIG_DIR"/bookmarks/urls
awk '{ tmp = $1; $1 = $2; $2 = tmp; print $0 }' "$QUTE_CONFIG_DIR"/quickmarks
sqlite3 -separator ' ' "$QUTE_DATA_DIR"/history.sqlite 'SELECT url, title FROM CompletionHistory'
} | dmenu -l 10 -p "open $* " | cut -d ' ' -f 1)
if [ $? = 0 ] && [ -n "$url" ]; then
printf 'open %s %s\n' "$*" "$url" >>"$QUTE_FIFO"
fi