dwmbar/modules/tor
Manuel Palenzuela bf7dc6456d Added tor module
2019-10-22 01:35:30 +01:00

23 lines
333 B
Bash
Executable file

#!/bin/bash
# Prints if the tor service is enabled or not
# Requires tor
TOR_ENABLED='ﴣ'
TOR_DISABLED=''
get_tor()
{
status=$(systemctl is-active tor.service)
if [ "$status" == "active" ]
then
echo "$TOR_ENABLED"
else
:
#echo "$TOR_DISABLED"
fi
}
get_tor