I am a linux beginner and I am trying to automate a small task on my computer.
In order to connect to my vpn, I have to open my terminal and type nordvpn connect
I have created a simple .sh script that does this for me.
#!/bin/bash
nordvpn connect
The problem is that to run this file I have to open my terminal and write `./vpn.sh
Is there a way I can automate this to be done with a single click?