Browse Source

fix vpn functions

master
Josh Fabean 4 years ago
parent
commit
2881342756
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      .config/fish/config.fish

+ 4
- 4
.config/fish/config.fish View File

@ -3,7 +3,7 @@ alias bim='nvim'
alias ssh="ssh -A" # forward ssh keys to server
alias cp='cp -iv' # prompt when overwriting and verbose
alias mv='mv -iv' # prompt when overwriting and verbose
alias ll='ls -FGlAhp'
#alias ll='ls -FGlAhp'
alias du1='du -h -d 1'
alias ls='exa'
alias gs='git status'
@ -18,15 +18,15 @@ alias docker-stop='systemctl stop docker'
alias mux='tmuxinator'
function vpn-start
sudo systemctl start openvpn-client@$1
sudo systemctl start openvpn-client@$argv
end
function vpn-stop
sudo systemctl stop openvpn-client@$1
sudo systemctl stop openvpn-client@$argv
end
function vpn-status
sudo systemctl status openvpn-client@$1
sudo systemctl status openvpn-client@$argv
end
# my path


Loading…
Cancel
Save