mirror of
https://github.com/liclac/ambient
synced 2025-02-16 20:38:24 +00:00
9 lines
171 B
Fish
9 lines
171 B
Fish
function ambient_is_ssid
|
|
set -l ssid (ambient_get_ssid)
|
|
for arg in $argv
|
|
if [ "$arg" = "$ssid" ]
|
|
return 0
|
|
end
|
|
end
|
|
return 1
|
|
end
|