diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/glyph_list.sh | 3 | ||||
-rwxr-xr-x | bin/postit.sh | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/bin/glyph_list.sh b/bin/glyph_list.sh new file mode 100755 index 0000000..51a7369 --- /dev/null +++ b/bin/glyph_list.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env sh + +cat ~/scripts/glyphs/glyph_list | dmenu -fn "DejaVuSansMono Nerd Font Mono-11.3;antialias=true;autohint=true" -l 20 -D ":" -p "glyphs:" | tr -d "\n" | xsel -ib diff --git a/bin/postit.sh b/bin/postit.sh index 496ddd8..7447540 100755 --- a/bin/postit.sh +++ b/bin/postit.sh @@ -1,5 +1,5 @@ #!/usr/bin/env sh -SQL_DB="$(cat /tmp/lclipd/lclipd_db_name)" +SQL_DB="/dev/shm/lclipd" content=$(sqlite3 "${SQL_DB}" "select replace(content,char(10),' '),id from lclipd;" | dmenu -fn "DejaVuSansMono Nerd Font Mono-11.3;antialias=true;autohint=true" -D "|" -l 20 -p "lclipd:") sqlite3 "${SQL_DB}" "select content from lclipd where id = ${content}" | xsel -ib |