lots of stuff

This commit is contained in:
2024-07-10 22:11:45 -07:00
parent 1080aa0e88
commit 53ccea9dec
7 changed files with 1803 additions and 43 deletions

View File

@@ -1,8 +1,30 @@
#!/bin/sh
clipboard_text=$(wl-paste -p)
bookmarks_file="$HOME/.local/share/bookmarks/bookmarks"
bookmark="$(wl-copy -o)"
file="~/.local/share/bookmarks"
# Make sure the bookmark file exists
touch "$bookmarks_file"
# Trim leading and trailing whitespace from clipboard
clipboard_text=$(echo "$clipboard_text" | xargs)
# Check if clipboard is not empty
if [ -n "$clipboard_text" ]; then
# Escape special characters for grep
escaped_text=$(printf '%s\n' "$clipboard_text" | sed 's:[][\\/.^$*]:\\&:g')
if grep -Fxq "$escaped_text" "$bookmarks_file"; then
# Entry already exists
notify-send "Bookmark already exists" "$clipboard_text"
else
# Append the text to the bookmarks file
echo "$clipboard_text" >> "$bookmarks_file"
notify-send "Bookmark saved" "$clipboard_text"
sh "$HOME/.local/bin/bookmark_update"
fi
else
notify-send "No text selected" "Please highlight some text to save as a bookmark."
fi
echo "$bookmark" >> "$file"