From 7cd49cf3166627d158ca2483621ec6a8b4a3fca8 Mon Sep 17 00:00:00 2001 From: Saumit Date: Wed, 12 Mar 2025 12:40:49 +0530 Subject: script: Adding webpage-saver script - cli and tofi --- .scripts/ws-tofi | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100755 .scripts/ws-tofi (limited to '.scripts/ws-tofi') diff --git a/.scripts/ws-tofi b/.scripts/ws-tofi new file mode 100755 index 0000000..d0f8bcb --- /dev/null +++ b/.scripts/ws-tofi @@ -0,0 +1,50 @@ +#!/bin/bash + +# Prerequisite tools check +[[ ! $(command -v brave) ]] && { echo "Error: 'brave' is not installed. Please install Brave Browser."; [[ $(command -v notify-send) ]] && notify-send "Error" "'brave' is not installed. Please install Brave Browser."; exit 1; } +[[ ! $(command -v monolith) ]] && { echo "Error: 'monolith' is not installed. Please install Monolith."; [[ $(command -v notify-send) ]] && notify-send "Error" "'monolith' is not installed. Please install Monolith."; exit 1; } +[[ ! $(command -v notify-send) ]] && echo "Warning: 'notify-send' is not installed. Notifications will not work." + +# Get the website URL from arguments +siteclip=$(echo -e "Yes\nNo" | tofi --prompt-text "Do you have the website link in your clipboard?") +[[ "$siteclip" == "Yes" ]] && WEBSITE_URL=$(wl-paste) || WEBSITE_URL=$(tofi --prompt-text "Enter website url:" --require-match false