diff --git a/docs/Command Snippets/Ansible Snippets.md b/docs/Command Snippets/Ansible Snippets.md deleted file mode 100644 index e47f2bb..0000000 --- a/docs/Command Snippets/Ansible Snippets.md +++ /dev/null @@ -1,36 +0,0 @@ -WSL Fix for world-writable directories -```bash -export ANSIBLE_CONFIG=./ansible.cfg -``` -Ping -```bash -ansible all -m ping -``` -Gather facts -```bash -ansible all -m gather_facts - -# Limit to one device -ansible all -m gather_facts --limit ADDRESS -``` -Elevate command to root user -```bash -# This will fail without sudo -ansible all -m apt -a update_cache=true - -# This will succeed -# Equivalent to sudo apt-update -ansible all -m apt -a update_cache=true --become --ask-become-me-pass -``` -Install packages -```bash -ansible all -m apt -a name=vim --become --ask-become-pass -``` -Install/Update Package (multiple arguments) -```bash -ansible all -m apt -a "name=vim state=latest" --become --ask-become-pass -``` -`sudo apt update` equivalent -```bash -ansible all -m apt -a "name=apt state=latest" --become --ask-become-pass -``` \ No newline at end of file diff --git a/docs/Files & Links/Extensions.md b/docs/Files & Links/Extensions.md index f3c9af7..d21cbe4 100644 --- a/docs/Files & Links/Extensions.md +++ b/docs/Files & Links/Extensions.md @@ -1,12 +1,10 @@ ### Browser Extensions - [https://github.com/Dj0ulo/OptiSearch](https://github.com/Dj0ulo/OptiSearch) ### VSCode -#### Custom VSCode Theme - - [Fluent-UI-VSCode](https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.fluent-ui-vscode) - - [VSCode Vibrancy Continued](https://marketplace.visualstudio.com/items?itemName=illixion.vscode-vibrancy-continued) - - Terminal tab may be broken. You can fix it by following the GitHub issue [here](https://github.com/TheOld/vscode-fluent-ui/issues/53) - Edit `workbench.html` file at `Microsoft VS Code\resources\app\out\vs\code\electron-sandbox\workbench` -#### [JSON Crack](https://marketplace.visualstudio.com/items?itemName=AykutSarac.jsoncrack-vscode) -![](_resources/Extensions/cae5cacf2eacf3bbea0cdafe628b8c55_MD5.gif) - +- Custom VSCode Theme + - https://marketplace.visualstudio.com/items?itemName=leandro-rodrigues.fluent-ui-vscode + - [https://marketplace.visualstudio.com/items?itemName=illixion.vscode-vibrancy-continued](https://marketplace.visualstudio.com/items?itemName=illixion.vscode-vibrancy-continued) + - Terminal tab may be broken. You can fix it by following this below + [https://github.com/TheOld/vscode-fluent-ui/issues/53](https://github.com/TheOld/vscode-fluent-ui/issues/53) + - Edit `workbench.html` file at `Microsoft VS Code\resources\app\out\vs\code\electron-sandbox\workbench` diff --git a/docs/Files & Links/_resources/Extensions/cae5cacf2eacf3bbea0cdafe628b8c55_MD5.gif b/docs/Files & Links/_resources/Extensions/cae5cacf2eacf3bbea0cdafe628b8c55_MD5.gif deleted file mode 100644 index 070fcf1..0000000 Binary files a/docs/Files & Links/_resources/Extensions/cae5cacf2eacf3bbea0cdafe628b8c55_MD5.gif and /dev/null differ