๐Ÿ“ฆโž”๐Ÿฆ‹ Store and retrieve files on the Atmosphere
35
fork

Configure Feed

Select the types of activity you want to include in your feed.

auth: add missing commands to auth ignoring/overriding

Ducky f4925def d424ada5

+4 -2
+4 -2
src/commands/auth.sh
··· 15 15 if [[ -z $override_username ]] && [[ $_is_sourced == 0 ]]; then 16 16 # NOTE: Speeds things up a little if the user is overriding actor 17 17 # Keep this in-sync with the main case in `../entry.sh`! 18 - if [[ $_command == "cat" && -n "${_command_args[1]}" ]] ||\ 18 + if [[ $_command == "bsky" && -n "${_command_args[1]}" ]] ||\ 19 + [[ $_command == "cat" && -n "${_command_args[1]}" ]] ||\ 19 20 [[ $_command == "fetch" && -n "${_command_args[1]}" ]] ||\ 20 21 [[ $_command == "fetch-crypt" && -n "${_command_args[1]}" ]] ||\ 21 22 [[ $_command == "info" && -n "${_command_args[1]}" ]] ||\ ··· 28 29 fi 29 30 30 31 # NOTE: Speeds things up a little if the command doesn't need actor resolving 31 - if [[ $_command == "bsky" ]] ||\ 32 + if [[ -n $_command ]] ||\ 33 + [[ $_command == "ai" ]] ||\ 32 34 [[ $_command == "handle" ]] ||\ 33 35 [[ $_command == "help" ]] ||\ 34 36 [[ $_command == "now" ]] ||\