aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKuerbiskosar <kuerbiskosar@gmail.com>2024-10-21 23:35:06 +0200
committerKuerbiskosar <kuerbiskosar@gmail.com>2024-10-21 23:35:06 +0200
commit5730a76e5783fbec3f539f66383e53a877df90fc (patch)
tree072885a630354be63399bd9ca8db9f177d7c22e4
parenta26d1c62309e85879ddca74b55ba6797cf4facd5 (diff)
remove debug comments
-rwxr-xr-xwebtrayctl5
1 files changed, 1 insertions, 4 deletions
diff --git a/webtrayctl b/webtrayctl
index a612914..a8ce7b6 100755
--- a/webtrayctl
+++ b/webtrayctl
@@ -22,7 +22,6 @@ install_webapp() {
full_url=$(curl -Ls -o /dev/null -w%{url_effective} $url)
if [ -z "$iconfile" ]; then
- echo using favicon as icon file
full_url_cancled=$(echo $full_url | sed 's/\//\\\//g')
# get the linkt to the icon by first searching for every <link> tag, containing a icon link
# then getting the string of the first href in the first link, and then appending the extended url to the beginning, if it is not a relative path (only works for http and https protocols)
@@ -38,7 +37,7 @@ install_webapp() {
iconfile="$HOME/.local/share/webtray/icons/$name.png"
else
echo "the website does not seem to have a favicon"
- echo "consider adding the local path to a favicon on your computer with the --icon argument"
+ echo "consider adding the path to a favicon on your computer with the --icon argument"
fi
fi
@@ -80,8 +79,6 @@ do
shift
;;
"--open-at-startup")
- echo we are opening at startup
- echo "$argument"
open_at_startup="--open-at-startup"
shift
;;