The pulldown is an artefact. There are no options to turn it on and off again.
If one wants a GUI, the options are per the GitHub project.
If you’d care to have a quick-link to enable disable, I do this (My OS’s are centred on Mint Cinnamon, so modify these ideas to suit your base accordingly):
1 - Make TWO shell scripts, one to turn it on, another off.
WarpOff.sh
#!/bin/bash
warp-cli disconnect
sudo /etc/init.d/networking restart
resolvectl
sleep 2
and the warpOn.sh
#!/bin/bash
warp-cli connect
sudo /etc/init.d/networking restart
resolvectl
sleep 2
2 - using the terminal, for each script make them executable with chmod +x warpOn.sh
and chmod +x warpOff.sh
3 - Ensure the scripts are in your terminals $PATH. (or add the directory, to the path. See what your path is via cat $PATH
)
(This is where things will diverge for you if you are not Cinnamon Desktop - modify the ideas accordingly)
4 - Make two desktop launchers (right click, add new launcher
)
This will add two cool icons to your desktop. Follow your nose on the inputs (its easy) and click the “rocket” to change the icons.
Example of the warpOff.desktop file is
[Desktop Entry]
Version=1.0
Exec=/home/<USER>/.local/share/warp/warp.off.sh
Icon=/home/<USER>/.local/share/warp/warp.off.png
Name=WARP Off
GenericName=WARP Off
Comment=Disconnect and restart network
Encoding=UTF-8
Terminal=true
Type=Application
Categories=Application;Network;
By adding the Desktop Launchers, you will be asked if you want to add them to your Cinnamon/Gnome menu - YES - is the answer.
5 - Open the Menu, drag+drop the new icon from the menu onto your taskbar.
This will give you two quick-link icons to turn the WARP on and off.
Hope this helps someone. 