This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # !!WARNING!! | |
| # This will DELETE all efforts you have put into configuring nix | |
| # Have a look through everything that gets deleted / copied over | |
| nix-env -e '.*' | |
| rm -rf $HOME/.nix-* | |
| rm -rf $HOME/.config/nixpkgs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # description: Cisco Anyconnect CSD wrapper for OpenConnect | |
| # author: https://github.com/asarkar/ | |
| # gist: https://gist.github.com/asarkar/fb4452a4abdf9e4a9752a7d55d2cdc93 | |
| # connect: sudo openconnect --background \ | |
| # --user=<username> \ | |
| # --authgroup=1 \ | |
| # --csd-user=<localhost username> \ | |
| # --csd-wrapper=<script location on localhost> \ | |
| # --os=mac-intel \ |