Update Library/Application Support/Code/User/settings.json
Update .local/bin/vpn Update .ssh/config
This commit is contained in:
parent
bc02050af9
commit
1100444400
|
@ -45,5 +45,8 @@
|
||||||
"gitlab.aiAssistedCodeSuggestions.enabled": false,
|
"gitlab.aiAssistedCodeSuggestions.enabled": false,
|
||||||
"gitlens.showWelcomeOnInstall": false,
|
"gitlens.showWelcomeOnInstall": false,
|
||||||
"gitlens.showWhatsNewAfterUpgrades": false,
|
"gitlens.showWhatsNewAfterUpgrades": false,
|
||||||
"projectManager.groupList": true
|
"projectManager.groupList": true,
|
||||||
|
"[json]": {
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -17,7 +17,8 @@ case "$1" in
|
||||||
up)
|
up)
|
||||||
# Start the VPN connection
|
# Start the VPN connection
|
||||||
VPN_PASSWORD=$(get_vpn_password)
|
VPN_PASSWORD=$(get_vpn_password)
|
||||||
echo $VPN_PASSWORD | sudo openconnect --passwd-on-stdin --config .config/openconnect/intersport.de.conf > /dev/null 2>/dev/null
|
echo $VPN_PASSWORD | sudo openconnect --passwd-on-stdin --config $HOME/.config/openconnect/intersport.de.conf
|
||||||
|
#> /dev/null 2>/dev/null
|
||||||
;;
|
;;
|
||||||
down)
|
down)
|
||||||
# Terminate the VPN connection
|
# Terminate the VPN connection
|
||||||
|
|
|
@ -6,4 +6,8 @@ Host gitlab.com
|
||||||
User git
|
User git
|
||||||
IdentityFile ~/.ssh/id_ed25519-work
|
IdentityFile ~/.ssh/id_ed25519-work
|
||||||
|
|
||||||
|
Host *.intersport.de
|
||||||
|
User gitea
|
||||||
|
IdentityFile ~/.ssh/id_ed25519-work
|
||||||
|
|
||||||
AddKeysToAgent yes
|
AddKeysToAgent yes
|
||||||
|
|
Loading…
Reference in New Issue