You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have installed howdy from source on debian trixie.
and now im making a ssh interface to home assistant.
for a notification when a false login was detected with image.
and a switch for turning howdy on and off.
for this i need the current state of howdy which is lacking.
please add a state option to the howdy command to see if howdy is enabled or disabled.
for now we can use grep -i "disabled" /usr/local/etc/howdy/config.ini | awk -F' = ' '{print "Howdy is " ($2 == "false" ? "enabled" : "disabled")}'
The text was updated successfully, but these errors were encountered:
I have installed howdy from source on debian trixie.
and now im making a ssh interface to home assistant.
for a notification when a false login was detected with image.
and a switch for turning howdy on and off.
for this i need the current state of howdy which is lacking.
please add a state option to the howdy command to see if howdy is enabled or disabled.
for now we can use
grep -i "disabled" /usr/local/etc/howdy/config.ini | awk -F' = ' '{print "Howdy is " ($2 == "false" ? "enabled" : "disabled")}'
The text was updated successfully, but these errors were encountered: