Skip to content

Configuration to check if your IP address is routed through the Tor network and display the status on your desktop using Conky. This is particularly useful for users of TorGhost by the developer SusmithKrishnan.

Notifications You must be signed in to change notification settings

AN-27/conky-tor-status-checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Conky Tor Status Checker

This script is used to check if the IP address is routed through Tor and display the status in Conky.

Instructions

  1. Create the file check_ip.sh in your home directory:

    #!/bin/bash
    
    # Check if the IP address is routed through Tor
    tor_check=$(curl -s https://check.torproject.org/ | grep -q "Congratulations" && echo "Yes" || echo "No")
    
    # Output "Tor: Yes" or "Tor: No" based on the check result
    echo "Tor: $tor_check"

About

Configuration to check if your IP address is routed through the Tor network and display the status on your desktop using Conky. This is particularly useful for users of TorGhost by the developer SusmithKrishnan.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages