dotfiles/home/default/.local/bin/bookmark

11 lines
282 B
Plaintext
Raw Normal View History

2023-05-03 10:19:35 -04:00
#!/bin/sh
bookmark="$(wl-paste)"
file="$HOME/notebook/bookmarks/bookmarks.md"
if grep -q "^$bookmark$" "$file"; then
notify-send "error." "bookmark \"$bookmark\" exists."
else
notify-send "bookmark added." "$bookmark is now saved to the file."
echo "$bookmark" >> "$file"
fi