diff options
| author | Kuerbiskosar <kuerbiskosar@gmail.com> | 2024-10-21 23:35:06 +0200 |
|---|---|---|
| committer | Kuerbiskosar <kuerbiskosar@gmail.com> | 2024-10-21 23:35:06 +0200 |
| commit | 5730a76e5783fbec3f539f66383e53a877df90fc (patch) | |
| tree | 072885a630354be63399bd9ca8db9f177d7c22e4 /webtrayctl | |
| parent | a26d1c62309e85879ddca74b55ba6797cf4facd5 (diff) | |
remove debug comments
Diffstat (limited to 'webtrayctl')
| -rwxr-xr-x | webtrayctl | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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 ;; |