mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
9 lines
206 B
Bash
9 lines
206 B
Bash
#!/usr/bin/env bash
|
|
|
|
cd "$1"
|
|
echo "Input bookmark name: "
|
|
read name
|
|
link=$(wl-paste)
|
|
echo "- [${name}](${link})" >> "$(zk list --match-strategy exact --match "title: 'Bookmarks'" --format "{{path}}")"
|
|
cd -
|