mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 22:19:45 +00:00
24 lines
333 B
Text
24 lines
333 B
Text
|
#!/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
|